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:
Searches for web radio by submitted keyword and returns the station name and the link for listing .
May be enhanced to read user's selection and submit it to mplayer.
There are 5 alternatives - vote for the best!
If you can do better, submit your command here.
You must be signed in to comment.
Thanks for a nice command - just a couple of things:
"read" doesn't seem to work this way. For me it hangs after the read command. Why not just declare the keyword with
keyword="something";query="...Also you don't need the quotes round "$keyword" in the query declaration, since you've already got them round the whole phrase.
This worked for me:
keyword="Mali";query="http://www.shoutcast.com/sbin/newxml.phtml?search=$keyword";curl -s $query |awk -F '"' 'NR <= 4 {next}NR>15{exit}{sub(/SHOUTcast.com/,"http://yp.shoutcast.com/sbin/tunein-station.pls?id="$6)}{print i++" )"$2}'You are right for quotes , this was a typo error .
But I still don't know why it hangs for you after theread.
...ah, sorry, I hadn't twigged that it was prompting me to type in the keyword at that point! It works fine (after fixing the quotes). :)