This page will show us how to create a list of files and folders ordered by size using standard Linux commands.
Command
To get a list with the size of each item in a folder, you’ll want to use the du command like this:
du -sm *
The -m argument will return the listing in megabytes (note that you can use -h for human readable, but it won’t sort correctly)
Now we will want to run this through the sort command, sorting in reverse order -r and numeric -n:
du -sm * | sort -nr
The only problem here is that we’ll get way too much output if there are a lot of files and folders, so we can either pipe it through the more command:
du -sm * | sort -nr | more
Or we can just return the top 15 largest items:
du -sm * | sort -nr | head -15
This will return a listing something like this:
2907 Files1 993 Files2 38 Somefile.txt
- › Can a Magnet Really Damage My Phone or Computer?
- › 10 YouTube Features You Should Be Using
- › Edifier Neobuds S Review: The Good, the Bad, and the Buggy
- › Which Smartphone Accessories Are Worth Buying?
- › Don’t Buy a Wi-Fi Extender: Buy This Instead
- › Should You Turn Up the Transmit Power on Your Wi-Fi Router?