Created
May 14, 2015 11:47
-
-
Save akanto/f1e9acd0898af770f19a to your computer and use it in GitHub Desktop.
List of open file short by count
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
| #List of open file short by count: | |
| lsof 2>/dev/null | awk '{print $2}' | sort | uniq -c | sort -n | |
| lsof 2>/dev/null | wc -l |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment