Created
May 16, 2014 00:34
-
-
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)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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