Find disk usage sorted by size
To find all folders and it's disk usage sorted by size, you can use the following cmd
du -ck | sort -nTo find all files in a folder and it's size,
ls -l --block-size=MBor
ls -lhShare this article
To find all folders and it's disk usage sorted by size, you can use the following cmd
du -ck | sort -nTo find all files in a folder and it's size,
ls -l --block-size=MBor
ls -lhShare this article