Last active
January 14, 2023 09:10
-
-
Save D4R4/f465734f06185325fe33069251a2abdb to your computer and use it in GitHub Desktop.
List users by RAM usage
This file contains hidden or 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
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