List open files taking up space: Difference between revisions

From Skytech
Jump to navigation Jump to search
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>"
 
(No difference)

Latest revision as of 16:49, 10 September 2012


Listing open files by the system taking up space

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