Created
June 8, 2011 16:08
-
-
Save andyt/1014725 to your computer and use it in GitHub Desktop.
List gems currently in use across all running processes
This file contains hidden or 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
sudo lsof|grep -i gems|awk '{ print $9 }'|grep -oE "[^/]+\-[0-9\.]+\/"|sort|uniq |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Note that this will only list gems where there is a file open - commonly only those with a shared object (*.so) file.