List open files taking up space

From Skytech
Revision as of 16:49, 10 September 2012 by Martin (talk | contribs) (Created page with "Category:Linux = Listing open files by the system taking up space = <pre> lsof / | awk '{if ($7 > 1048576) print $7/1048576 "MB" " " $9 }' | sort -n -u | tail </pre>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search


Listing open files by the system taking up space

lsof / | awk '{if ($7 > 1048576) print $7/1048576 "MB" " " $9 }' | sort -n -u | tail