DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Ordered File Sizes
// List the file and recursive directory sizes of the currently directory, ordered by size ASC.
du -s * | sort -g





