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/
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.
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
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:
There is 1 alternative - vote for the best!
If you can do better, submit your command here.
You must be signed in to comment.
In computer science, we measure in units of "powers of two":
one kilobyte is 1024 bytes
one megabyte is 1024*1024 = 1048576 bytes
one gigabyte is 1024*1024*1024 = 1073741824 bytes
Ergo, to find files larger than 1 gigabyte:
find / -type f -size +1073741824c # find files > 1gbReference: http://en.wikipedia.org/wiki/Gigabyte
You have one too many -'s:
find / -type -f -size +1000000000c
should be
find / -type f -size +1000000000c
@folengo, I think most people assume that "1 GB" means 2^30 bytes rather than 10^9 bytes. Although there's nothing wrong with 10^9 for 1GB (maybe you make hard drives) Maybe you know that since you used the 'c' unit on the size.
I like to think of it this way:
1K = 2^10 bytes (i.e. 10 bits needed to byte-address 1K),
1M = 2^20 bytes,
1G = 2^30 bytes, etc.
As it should, 'find' allows you to specify any size, but the -size option lets you specify units of base-2 sizes so the command
find / -type f -size +1Gwill find files larger than 1,073,741,824 bytes rather than 1,000,000,000 bytes.
You can pipe this to ls to find out how big each file actually is:
find / -type f -size +1G | xargs ls -lh