Skip to content

Instantly share code, notes, and snippets.

@kevinsimper
Created January 20, 2017 10:57
Show Gist options
  • Save kevinsimper/5b4414934e39688ae96d48506fb8db8c to your computer and use it in GitHub Desktop.
Save kevinsimper/5b4414934e39688ae96d48506fb8db8c to your computer and use it in GitHub Desktop.
Find memory usage of Slack
ps -eo rss,comm | grep Slack | awk '{print $1}' | paste -s -d '+' - | bc | awk '{printf( "%0.2f GiB\n", $1/1024^2 )}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment