Finding big folders

How to find the folders which are consuming much diskspace. It’s easy using du:

du -k | sort -nr | pg

And the bigist folders will be on top of the list.

Leave a Comment