Show the ten largest files on a server Snippet·May 24, 2012 find /var/www -type f -printf '%st%pn' | sort -rn | head -10 | awk '{ printf "%8.1f MB %sn", $1 / 1048576, $2 }'