Skip to content

Instantly share code, notes, and snippets.

@ZenLiuCN
Created November 11, 2021 10:09
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 ZenLiuCN/57de10c6b3ae307e3928fe2b37f2600b to your computer and use it in GitHub Desktop.
Save ZenLiuCN/57de10c6b3ae307e3928fe2b37f2600b to your computer and use it in GitHub Desktop.

*unix

fetch process memory

ps -ux --sort rss  | awk 'NR>1 {$6=int(100 * $6/1024)/100"MB";$5=int(100 * $5/1024)/100"MB";}{ print;}'|column -t
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment