Return to Snippet

Revision: 58456
at July 16, 2012 21:41 by tinytiger


Initial Code
find . -type f -exec du -sk {} \; | sort -nr

Initial URL


Initial Description
If you only want to show directories, replace "-type f" with "-type d".

Initial Title
Recurisvely sort files by file size

Initial Tags
Bash, linux

Initial Language
Bash