Skip to content

Instantly share code, notes, and snippets.

@we4tech
Created October 30, 2019 19:14
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 we4tech/bd3beebb5f9b3680b95768d4ff431822 to your computer and use it in GitHub Desktop.
Save we4tech/bd3beebb5f9b3680b95768d4ff431822 to your computer and use it in GitHub Desktop.
Capture total memory usages by all unicorn process
ps axu | grep "unicorn" | grep -v "grep" | awk '{split($0,a," "); s+=a[6]} END {print s}' | pbcopy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment