[chiglug] fyi: list top 10 largest open files

Drew Fustini pdp7pdp7 at gmail.com
Mon Jan 4 23:45:10 UTC 2016


I thought this was nifty:
https://plus.google.com/+CybercitiBiz/posts/M35xwuzfvcM

Want to list top 10 largest open files on a Linux or Unix like system? Try:
lsof / | awk '{ if($7 > 1048576) print $7/1048576 "MB" " " $9 " " $1
}' | sort -n -u | tail



More information about the discuss mailing list