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

Redirect STDIN

Terminal - Redirect STDIN
< /path/to/file.txt grep foo
2009-03-29 02:43:40
User: atoponce
Functions: grep
14
Redirect STDIN

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.

Know a better way?

If you can do better, submit your command here.

What others think

very nice. I had not thought of that

Comment by GNUix 49 weeks and 5 days ago

This is very nice. I had always used

cat file|grep foo

for easy editing. Good to know there's a better syntax.

Comment by clockworkavian 49 weeks and 5 days ago

grep foo

Comment by jnash 49 weeks and 5 days ago

I wanted to say: grep foo

Comment by jnash 49 weeks and 5 days ago

Oh well.. looks like theres some garbling of comments.

(here goes)

I wanted to say: grep foo "lessthan"(cat file)

Comment by jnash 49 weeks and 5 days ago

clockworkavian: using grep with cat like that is highly discouraged, as it (needlessly) invokes cat. I like the suggestion for redirecting stdin.

Comment by kaedenn 49 weeks and 5 days ago

@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

Comment by clockworkavian 49 weeks and 3 days ago

Your point of view

You must be signed in to comment.

Related sites and podcasts