To find all folders and it's disk usage sorted by size, you can use the following cmd
du -ck | sort -n
To find all files in a folder and it's size,
ls -l --block-size=MB
or
ls -lh
Share this article on: