Linux and Apache

Track down the largest files and folders with 1 command

Struggling to track down where your hard drive or web server space is going? This command prints out the 20 largest files and folders:

du -a /home | sort -n -r | head -n 20