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:
Say you just typed a long command like this:
rsync -navupogz --delete /long/path/to/dir_a /very/long/path/to/dir_b
but you really want to sync dir_b to dir_a. Instead of rewriting all the command line, just type followed by , and your command line will read
rsync -navupogz --delete /very/long/path/to/dir_b /long/path/to/dir_a
There are 4 alternatives - vote for the best!
If you can do better, submit your command here.
You must be signed in to comment.
Nice. It's worth pointing out a few things.
@bibe: I'd add "readline" to the description (make it easier to search for).
Ctrl-E moves the cursor to the end of the line, but if you've just used up-arrow to alter the previous command the cursor will already *be* at the end.
You can replace Esc-T with Meta-T (or Alt-T) -- easier to type on many keyboards.
Unfortunately, readline seems to treat . (dot/period) as a separator:
echo hello wor.ldbecomes
echo hello ld.worAnyone know how to set the word break characters?
It does not appears to work in my Solaris 5.10 machine..!
@michaelrozar17 on my Commodore64 doesn't work either!