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:
Search at CommandLineFu.com from your terminal.
Get the clfu-seach at http://www.colivre.coop.br/Aurium/CLFUSearch
There are 4 alternatives - vote for the best!
If you can do better, submit your command here.
You must be signed in to comment.
stupid joke. There ain't no such program "clfu-seach" in the world
ok, I take my words back. Downloaded and it works
Nicely done,
I like how you format the output!
Unfortunately you are printing results from search auto-complete and this site has unsorted autocomplete.
For example if I search "sort" the autocomplete gives me 5 results which are by far not the highest scored results. When actually searching the results are better.
Also when searching "sort" there is a result with negative score which escapes your sed filtering.
In your .bash_aliases file :
# command line search
function clfu-search() {
wget -q -O /dev/stdout --post-data "q=$1" http://www.commandlinefu.com/search/autocomplete | grep "class=\"autocomplete-command\"" | sed -e 's/^.*\(.*\)/\1/' -e 's///' | sort -u
}
function clfu-search() {wget -q -O /dev/stdout --post-data "q=$1" http://www.commandlinefu.com/search/autocomplete | grep "class=\"autocomplete-command\"" | sed -e 's/^.*<strong>\(.*\)<\/strong>/\1/' -e 's/<\/div>//' | sort -u}Very dangerous !
Searches, but no results output