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:
If you're like me and want to keep all your music rated, and you use xmms2, you might like this command.
I takes 10 random songs from your xmms2 library that don't have any rating, and adds them to your current playlist. You can then rate them in another xmms2 client that supports rating (I like kuechenstation).
I'm pretty sure there's a better way to do the grep ... | sed ... part, probably with awk, but I don't know awk, so I'd welcome any suggestions.
There are 12 alternatives - vote for the best!
If you can do better, submit your command here.
You must be signed in to comment.
This is really cool!
why not simply use
xmms2 mlib searchadd?
oh yeah for the 10.
but it still worth mentioning 8)
I figured out how to make this command a little bit better. It should be this:
xmms2 mlib search NOT +rating | sed -nr 's/^([0-9]+).*/\1/p' | sort -R | head | xargs -L 1 xmms2 addidNotice I got rid of the grep. The -n flag on sed makes it "non-printing." Adding p onto the end of the sed recipe prints out matching results. Doing that, I could take out the grep, so you have one less pipe.