Skip to content

Instantly share code, notes, and snippets.

@D4R4
Last active January 14, 2023 09:10
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 D4R4/f465734f06185325fe33069251a2abdb to your computer and use it in GitHub Desktop.
Save D4R4/f465734f06185325fe33069251a2abdb to your computer and use it in GitHub Desktop.
List users by RAM usage
ps aux | awk '{print $6/1024 " MB \t\t" $1 "\t\t" $11}' | sort -n | tail -n 50 | tac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment