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:
Manpages, command summaries, and pretty much everything else usually have the information you're most likely to want at the beginning. Seeing just the last 40 or so lines of options from a command that has 100 is not super useful, and having to scroll up each time you want to glance at something is spastic.
Run this and then do something like
p do vi --help
and you'll get the first screen(-mostly-)full of vi's usage info and options list
Then use
p d
to page down, and
p u
to page up.
To see the current page again:
p r
Also useful for situations like
p do aptitude search ~dsmorgasbord
p next
#p sudo aptitude -r install libwickedawesome-perl-snoochieboochies
p next
p sudo aptitude -r install libwickedawesome-perl-snoochieboochies snazztasticorama-dev-v0.∞
where you're using readline up-arrow, HOME, END, etc., to quickly recall commented commands.
For the unaware, that option to aptitude search will bring up all of the packages whose descriptions contain the string "smorgasbord". Depending on your distro, there could potentially be hundreds of them.
There is 1 alternative - vote for the best!
If you can do better, submit your command here.
You must be signed in to comment.
hmm, it didn't like my multiline command sequence.
Presto!
p do aptitude search ~dsmorgasbordp next#p sudo aptitude -r install libwickedawesome-perl-snoochieboochiesp nextp sudo aptitude -r install libwickedawesome-perl-snoochieboochies snazztasticorama-dev-v0.∞Neat, but what does this do that something like
vi --help | lessdoesn't? When I use less, I get fwd/reverse search, and I can background it and come back later.
Mostly it's just the convenience of being able to type and see the documentation without having to use some sort of toggling mechanism ? (back/fore)grounding a task, switching to another tab in a multitab terminal app, etc. Mostly it's for situations where you would just type APP --help, except that APP --help spoots out 400 lines of options.
I got industrious and added some features, like perl regex searching and a hookin to elinks... let me know and I'll gist it or something if somebody is interested.