Created
August 30, 2014 13:37
-
-
Save cocoabox/9da2fd018f4dc2ee3a4c to your computer and use it in GitHub Desktop.
CPU Top5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ps aux | tail -n+2 | sort -rk 3,4 | awk 'NR <= 5 { cpu=$3; pid=$2; $1=$2=$3=$4=$5=$6=$7=$8=$9=$10=""; printf("CPU:%-.1f \tPID:%5d : %s\n", cpu, pid, $0); }' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment