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:
Requires display.
Corrected version thanks to sputnick and eightmillion user.
If you can do better, submit your command here.
You must be signed in to comment.
Hi.
Nice one. Can you explain the start of the perl regexp ? :
(?<=")And at the end, the ( ) are not needed IMHO.
Cheers, sputnick.
Hi Sputnik, that's a positive lookbehind assertion. The regex only matches "/dyn/str_..." if it's preceded by a double quote character.
By the way, wizel, that regex can be made shorter. This is what I would use:
display http://dilbert.com$(curl -s dilbert.com|grep -Po '(?<=")/dyn/str_strip(/0+){4}/.*strip.gif')thanks sightmillion, your're right.
I was wondering what the Dilber site used to tag/identify the strip.
So I opted for the "safest" approach, but thing your proposal works OK.
Thanks eightmillion.
The website made changes.
I have successfully tested :
display http://www.dilbert.com/$(curl -s dilbert.com | grep -Po '(?<=")/dyn/str_strip(/0+){4}/.*strip.[^\.]+\.gif')Another way :
display http://dilbert.com$(curl -s dilbert.com|grep -Po '"\K/dyn/str_strip(/0+){4}/.*strip.[^\.]*\.gif')sputnick, I've corrected with you version and added your name in the comments.
If you don't feel OK, pls let me know.
And for your crontab :
30 08 * * 1-5 DISPLAY=:0 display http://dilbert.com$(curl -s dilbert.com | grep -Po '"\K/dyn/str_strip(/0+){4}/.*strip.[^\.]*\.gif')Like mine, you will have monday to friday the image shown on your desktop at 08:30 AM
Here's one for Doonesbury. The regex is easier for this site:
display -title 'Doonesbury' $(curl -s http://www.doonesbury.com/strip/dailydose/index.html | grep -Eow -m 1 'http://images.ucomics.com/comics/db/[0-9]{4}/db[0-9]{6}\.gif')The grep -w and -m 1 options are unnecessary but I thought might make it a bit more robust.
This works on OSX
open $(curl -s dilbert.com | grep -o 'http://dilbert.com/dyn/.*strip.gif')