add cpu_calcul
This commit is contained in:
parent
79c688b046
commit
a13bbf75c2
1 changed files with 13 additions and 0 deletions
13
cpu_calcul
Executable file
13
cpu_calcul
Executable file
|
@ -0,0 +1,13 @@
|
|||
#!/bin/sh
|
||||
|
||||
if [ "$1" == "" ]
|
||||
then
|
||||
V=" "
|
||||
else
|
||||
V="$1"
|
||||
fi
|
||||
|
||||
awk '{u=$2+$4; t=$2+$4+$5; if (NR==1){u1=u; t1=t;} else print ($2+$4-u1) * 100 / (t-t1) ; }' <(grep "cpu${V}" /proc/stat) <(sleep 0.5;grep "cpu${V}" /proc/stat)
|
||||
|
||||
|
||||
#awk '{u=$2+$4; t=$2+$4+$5; if (NR==1){u1=u; t1=t;} else print ($2+$4-u1) * 100 / (t-t1) "%"; }' <(grep "cpu${V}" /proc/stat) <(sleep 1;grep "cpu${V}" /proc/stat)
|
Loading…
Reference in a new issue