Created
May 19, 2016 05:58
-
-
Save suya55/7c789283386bc4543e8bec51e5e92817 to your computer and use it in GitHub Desktop.
display 10 biggest open files
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
lsof / | awk '{ if($7 > 1048576) print $7/1048576 "MB "$9 }' | sort -n -u | tail |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment