There are times when you may want to sort the folders and files in a folder
by their sizes.
If the files and folders are large, do
du -sh * | sort -rh | more
For mostly small files and folders, do
du -sk * | sort -rn | more
Modified on: Tue, 15 Jul, 2025 at 5:09 AM
There are times when you may want to sort the folders and files in a folder
by their sizes.
If the files and folders are large, do
du -sh * | sort -rh | more
For mostly small files and folders, do
du -sk * | sort -rn | more
Did you find it helpful? Yes No
Send feedback