Archive for the ‘Tip 'n' Bits’ Category

Find the largest directories »

To find the largest directories in Linux you can use the command du -S |sort -n If you want to narrow it down to the largest ten, pipe the output to head du -S |sort -n -r |head -n10