How to search top 10 biggest Files and Directories On a Linux ?
du -a / | sort -n -r | head -n 10
cd /path/to/some/where
- du -hsx * | sort -rh | head -10
How to search top 10 biggest Files and Directories On a Linux ?
du -a / | sort -n -r | head -n 10
cd /path/to/some/where