Sort the size usage of a directory tree by gigabytes, kilobytes, megabytes, then bytes.

du -b --max-depth 1 | sort -nr | perl -pe 's{([0-9]+)}{sprintf "%.1f%s", $1>=2**30? ($1/2**30, "G"): $1>=2**20? ($1/2**20, "M"): $1>=2**10? ($1/2**10, "K"): ($1, "")}e'
Probably only works with GNU du and modern perls.
Sample Output
3.3G    .
539.5M  ./doc
494.2M  ./locale
324.2M  ./javadoc
229.3M  ./icons
187.0M  ./gnome
156.1M  ./texmf
154.0M  ./kde4
141.1M  ./eclipse
135.5M  ./fonts
91.4M   ./gimp
62.1M   ./java

36
2009-02-20 06:11:31

1 Alternatives + Submit Alt

What Others Think

or du --max-depth=1 | sort -n | awk '{print $2}' | xargs du -h --max-depth=0
jacquesloonen · 875 weeks and 2 days ago
du -s *|sort -nr|cut -f2|xargs du -sh
unixmonkey3754 · 864 weeks and 2 days ago
du --max-depth=1 -h --apparent-size | sort -rh
Rudolf · 547 weeks and 3 days ago

What do you think?

Any thoughts on this command? Does it work on your machine? Can you do the same thing with only 14 characters?

You must be signed in to comment.

What's this?

commandlinefu.com is the place to record those command-line gems that you return to again and again. That way others can gain from your CLI wisdom and you from theirs too. All commands can be commented on, discussed and voted up or down.

Share Your Commands



Stay in the loop…

Follow the Tweets.

Every new command is wrapped in a tweet and posted to Twitter. Following the stream is a great way of staying abreast of the latest commands. For the more discerning, there are Twitter accounts for commands that get a minimum of 3 and 10 votes - that way only the great commands get tweeted.

» http://twitter.com/commandlinefu
» http://twitter.com/commandlinefu3
» http://twitter.com/commandlinefu10

Subscribe to the feeds.

Use your favourite RSS aggregator to stay in touch with the latest commands. There are feeds mirroring the 3 Twitter streams as well as for virtually every other subset (users, tags, functions,…):

Subscribe to the feed for: