How to find biggest subfolder
This little command will give you list of folders, sorted by their size:
du -sk * | sort -nr | more
Notes from the Expert
This little command will give you list of folders, sorted by their size:
du -sk * | sort -nr | more