Posts Tagged ‘ largest

Largest Directory

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 then you just need to pipe the output to head: du -S |sort -n -r |head -n10