Skip to content

Instantly share code, notes, and snippets.

@gianpaj
Created May 16, 2014 00:34
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 gianpaj/176bb89c4beb7025a557 to your computer and use it in GitHub Desktop.
Save gianpaj/176bb89c4beb7025a557 to your computer and use it in GitHub Desktop.
How much RAM are all your Google Chrome tabs using? (Real Memory Size aka Resident mem)
ps aux |grep "Google Chrome"| grep -v grep| awk '{print $6}' | awk '{ sum+=$1} END {print sum/1024 "MB"}'
For example 75 tabs + 17 extensions + 3 plugins + 1 web worker=
8025.2MB
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment