Hide

What's this?

commandlinefu.com is the place to record those command-line gems that you return to again and again.

Delete that bloated snippets file you've been using and share your personal repository with the world. 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.


If you have a new feature suggestion or find a bug, please get in touch via http://commandlinefu.uservoice.com/

Get involved!

You can sign-in using OpenID credentials, or register a traditional username and password.

First-time OpenID users will be automatically assigned a username which can be changed after signing in.

World cup college
Hide

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:

Hide

News

2010-03-03 - Commandlinefu @ SXSW 2010
Am going to be at SXSW this year, in case you want to submit any CLI nuggets or suggestions to me in person. Ping me on the @codeinthehole Twitter account.
2009-09-12 - Email updates now available
You can now enable email updates to let you know each time you're command is commented on.
2009-07-11 - API and javascript blog widget now available
A simple API has been released, allowing commands to be retrieved in various formats. This also allows commands to be embedded on blogs/homepages.
2009-05-17 - Added duplicate suggestions to the new command form
When adding a new command, a quick background search is performed to make sure you're not duplicating a command already in the system.
Hide

Tags

Hide

Functions

Alternative size (human readable) of files and directories (biggest last)

Terminal - Alternative size (human readable) of files and directories (biggest last)
du -ms * .[^.]*| sort -nk1
2009-07-01 13:38:13
User: ioggstream
Functions: du sort
3
Alternative size (human readable) of files and directories (biggest last)

using mb it's still readable;) a symbol variation

$ du -ms {,.[^.]}* | sort -nk1

Alternatives

There are 5 alternatives - vote for the best!

Terminal - Alternatives
find . -depth -type d -exec du -s {} \; | sort -k1nr
2009-06-23 20:52:35
User: mohan43u
Functions: du find sort
Tags: sort find du
3

somewhat faster version to see the size of our directories. Size will be in Kilo Bytes. to view smallest first change '-k1nr' to '-k1n'.

du -ms * | sort -nk1
function duf { du -sk "$@" | sort -n | while read size fname; do for unit in k M G T P E Z Y; do if [ $size -lt 1024 ]; then echo -e "${size}${unit}\t${fname}"; break; fi; size=$((size/1024)); done; done; }
2009-07-02 19:56:36
User: marssi
Functions: du echo read size sort
Tags: sort du shell human
-2

Found this one little more for me. This one removes the perl dependency (from command 2535).

Source for command : http://www.earthinfo.org/linux-disk-usage-sorted-by-size-and-human-readable/

function duf { du -k $@ | sort -rn | perl -ne '($s,$f)=split(/\t/,$_,2);for(qw(K M G T)){if($s<1024){$x=($s<10?"%.1f":"%3d");printf("$x$_\t%s",$s,$f);last};$s/=1024}' }
du -h -s -x * | sort -g -b -r | less -F
2009-06-30 10:37:07
Functions: du less sort
Tags: less sort find du
-5

This version, like the original posted, prints the biggest first, but prints files as well as directories. Additionally, the output is piped through less(1), so for very large directories, the output is automatically paginated. The argument to less tells it to quit if there is only one screen of output, so that less isn't intrusive when it needn't be.

Know a better way?

If you can do better, submit your command here.

What others think

If you can stomach a text-mode ncurses program, there is ncdu which analyses an entire tree at once: http://www.commandlinefu.com/commands/view/2387/ncdu-ncurses-disk-usage

Comment by bwoodacre 36 weeks and 4 days ago

This command produces duplicates and does not provide the full relative path to the file so that you have to hunt for things. There is a better way.

Comment by Tekhne 35 weeks and 4 days ago

@tekhne: can you run this command and produce duped lines?

Comment by ioggstream 35 weeks and 3 days ago

Your point of view

You must be signed in to comment.

Related sites and podcasts