2004-01-15, 08:00 PM
So you did a df and noticed that /var was full or you just want to find what the biggest file in the directory tree is. Well run this command and it'll show you.
Code:
ls -lsR | sort -n
That will sort all of the files and place the largest files at the end.