Skip to content

Instantly share code, notes, and snippets.

@philz
Created May 18, 2013 22:33
Show Gist options
  • Save philz/5605978 to your computer and use it in GitHub Desktop.
Save philz/5605978 to your computer and use it in GitHub Desktop.
Processes with the largest ratio of virtual memory size to resident size.
ps hax -o rss,vsz,command | awk '{ if ($1 > 0) { print $2/$1, $3 } }' | sort -n | tail
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment