List open files taking up space

From Skytech
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