Posts

Showing posts with the label spaces

Unix: 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.