R: [PLUTO-help] Cerco aiuto per uno script di shell
Alberto Pachera
alberto.pachera a elletre.com
Gio 29 Lug 2004 15:14:42 CEST
Good!!! Very good e qui lo slogan è: "Con linux si può!!!"
Questo è lo scipt che ho creato mostra delle info sul sistema
Se a qualcuno interessa o se notate imprecisioni... :
#! /bin/sh
vmstat -s > vmstat.info
vmstat > vmstatn.info
echo ""
echo " CPU information"
echo "---------------------"
echo -n "Tipo cpu : "
cat /proc/cpuinfo | grep 'model name' | cut -c 14-60
echo -n "% cpu libera : "
cat vmstatn.info | grep 0 | cut -c 74-76
echo -n "% cpu utilizzata dal sistema :"
cat vmstatn.info | grep 0 | cut -c 70-72
echo -n "% cpu utilizzata dai processi :"
cat vmstatn.info | grep 0 | cut -c 67-69
echo ""
echo ""
echo " Memory information"
echo "------------------------"
echo -n "Memoria totale : "
cat vmstat.info | grep 'total memory' | tr -s ' ' | cut -d ' ' -f2
echo -n "Memoria utilizzata : "
cat vmstat.info | grep 'used memory' | tr -s ' ' | cut -d ' ' -f2
echo -n "Memoria libera : "
cat vmstat.info | grep 'free memory' | tr -s ' ' | cut -d ' ' -f2
echo ""
rm vmstat.info
rm vmstatn.info
----------------------------------------------------------
-----Messaggio originale-----
Da: pluto-help-bounces a lists.pluto.it
[mailto:pluto-help-bounces a lists.pluto.it] Per conto di Paolo Ornati
Inviato: giovedì 29 luglio 2004 14.08
A: Supporto tecnico del PLUTO
Oggetto: Re: [PLUTO-help] Cerco aiuto per uno script di shell
On Thursday 29 July 2004 14:04, Paolo Ornati wrote:
> >
> > Per avere come risultato:
> >
> > $ ./mioscript.sh
> > $ Memoria totale disponibile: 256124
> >
> > HELP PLEASE!!!
>
> mioscript.sh
> _________________________________________________
> #!/bin/sh
> echo -n "Memoria totale disponibile: "
> cat /proc/meminfo | grep MemTotal | tr -s ' ' | cut -d' ' -f2
> _________________________________________________
Assumendo che quell'informazione sia sempre sulla prima riga possiamo fare
anche:
$ head -n1 /proc/meminfo | tr -s ' ' | cut -d' ' -f2
ma non cambia molto...
Riciao
--
Paolo Ornati
Gentoo Linux (kernel 2.6.7-gentoo-r10)
_______________________________________________
pluto-help mailing list
pluto-help a lists.pluto.it
http://lists.pluto.it/cgi-bin/mailman/listinfo/pluto-help
More information about the pluto-help
mailing list