Answers for "find high cpu usage process linux command"

1

get current cpu utilization in percentage linux

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 ' /proc/stat) <(sleep 1;grep 'cpu ' /proc/stat)
Posted by: Guest on January-14-2021

Code answers related to "find high cpu usage process linux command"

Browse Popular Code Answers by Language