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:
In the above example all files have 4 lines. In "file1" consecutive lines are: "num, 1, 2, 3", in "file2": "name, Jack, Jim, Frank" and in "file3": "scores, 1300, 1100, 980". This one liner can save considerate ammount of time when you're trying to process serious portions of data. "-d" option allows one to set series of characters to be used as separators between data originating from given files.
There are 3 alternatives - vote for the best!
If you can do better, submit your command here.
You must be signed in to comment.
That's a handy dandy command. :-)
It is also possible to do a two file merge using sdiff
and a little "data transforming" with sed/awk.
True, true? :)
Could you prepare awk alternative? It would be very nice to have one here.
does anybody know how to merge stdout lines? e.g. say I want to make my new version of ls that shows file and permissions (like a shorted ls -l). It would look something like this:
ls -l |cut -c1-10 >/tmp/file1; ls -1 >/tmp/file2; paste /tmp/file{1,2}It's not just for the above example, but other stuff I have swirling in my mind.
How about using
stat -c "%A %n" *in this particular case? ?stat? is more powerful than that.
One more thing about "paste". It can take "-" instead of file name. This makes "paste" to read lines from stdin. Nice thing here is that you can use more that one "-"s. For example if you've got file:
authorShakespearetitleHamletYou can do
cat file | paste - -to transform it into
author Shakespearetitle Hamlet