Skip to content

Instantly share code, notes, and snippets.

@j3ck
Created January 9, 2020 10:25
Show Gist options
  • Save j3ck/a17a76e2acc51ef173d1d8b295ecdd89 to your computer and use it in GitHub Desktop.
Save j3ck/a17a76e2acc51ef173d1d8b295ecdd89 to your computer and use it in GitHub Desktop.
show mem usage by process in mb sorted grouped
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