Skip to content

Instantly share code, notes, and snippets.

@chikien276
Last active January 1, 2023 10:42
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save chikien276/0f783a40874a58a6492188fd3d9a2cb0 to your computer and use it in GitHub Desktop.
Save chikien276/0f783a40874a58a6492188fd3d9a2cb0 to your computer and use it in GitHub Desktop.
Human readable memory usage in Linux per process
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 "" }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment