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:
Several times, I find myself hitting my up arrow, and changing the search term. Unfortunately, I find myself wasting too much time typing:
grep kernel /var/log/messages
Redirecting STDIN allows me to put the search term at the end so I less cursor movement to change what I'm searching for:
< /var/log/messages grep kernel
If you're using the emacs keyboard binding, then after you press your up arrow, press CTRL+w to erase the word.
If this has already been submitted, I couldn't find it with the search utility.
There is 1 alternative - vote for the best!
If you can do better, submit your command here.
You must be signed in to comment.
very nice. I had not thought of that
This is very nice. I had always used
cat file|grep foofor easy editing. Good to know there's a better syntax.
grep foo
I wanted to say: grep foo
Oh well.. looks like theres some garbling of comments.
(here goes)
I wanted to say: grep foo "lessthan"(cat file)
clockworkavian: using grep with cat like that is highly discouraged, as it (needlessly) invokes cat. I like the suggestion for redirecting stdin.
@kaedenn I know it's discouraged, as grep can do it natively, but for long filenames, having to hit the arrow keys a bunch of times to change a search term is a pain.
I will follow the correct way when it involves less work (the redirection is acceptable), but when it involves more work, I think I'll do it wrong and cut down the RSI