Skip to content

Instantly share code, notes, and snippets.

@LukeB42
Created May 25, 2015 17:12
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 LukeB42/a6a7d78219c4b2bbb691 to your computer and use it in GitHub Desktop.
Save LukeB42/a6a7d78219c4b2bbb691 to your computer and use it in GitHub Desktop.
#!/bin/bash
#Print resident set size of a process
ps aux|grep $*|grep -v grep|grep -v bash|awk '{$6=$6/1024; print $6 "MB\t" $11 "\t" $1;}'|sort -n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment