To sort the files in a directory use the following
du -sh -- * | sort -h
Taken from https://unix.stackexchange.com/a/4682
To sort the files in a directory use the following
du -sh -- * | sort -h
Taken from https://unix.stackexchange.com/a/4682
Problem
You would like to know what are the biggest nn files in your linux computer.
Solution
Run the following to give you the 20 largest files:
sudo du -ahx / | sort -rh | head -20
taken from Linux Journal Issue 275 March 2017