Created
January 9, 2020 10:25
-
-
Save j3ck/a17a76e2acc51ef173d1d8b295ecdd89 to your computer and use it in GitHub Desktop.
show mem usage by process in mb sorted grouped
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
echo "%CPU %MEM MEM PROCESS" | |
ps aux | awk '{mem[$11]+=int($6/1024)}; {cpuper[$11]+=$3};{memper[$11]+=$4}; END {for (i in mem) {print cpuper[i]"% ",memper[i]"% ",mem[i]" MB ",i}}' | sort -k3nr | head -n 5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment