danielhpavey.uk

Getting Directory Sizes in Terminal

du -hs * | sort -h

If you are using a sort that does not support -h, you can install GNU Coreutils. E.g. on an older Mac OS X:

brew install coreutils

du -hs * | gsort -h

Date: Wednesday 22nd July 2020