List 50 largest files
From James's Wiki
This will find the 50 largest files and sort by size, excluding directories /proc and /media
sudo find / -type f \( -path ./proc -o -path /media \) -prune -o -exec du -Sh {} + | sort -rh | head -n 50