Find largest open files ``` lsof / | awk '{if($7 > 1048576) print $7/1048576 "MB" " " $9 " " $1}' | sort -n -u | tail lsof -nP | grep '(deleted)' ```