Skip to content

Instantly share code, notes, and snippets.

@dearaujoj
Created October 17, 2013 08:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dearaujoj/7021327 to your computer and use it in GitHub Desktop.
Save dearaujoj/7021327 to your computer and use it in GitHub Desktop.
Total amount of memory used by the various process running on Linux
ps -eo size,pid,user,command --sort -size | awk '{ hr=$1/1024 ; printf("%13.2f Mb ",hr) } { for ( x=4 ; x<=NF ; x++ ) { printf("%s ",$x) } print "" }' | awk '{total=total + $1} END {print total}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment