Skip to content

Instantly share code, notes, and snippets.

@rsayers
Created October 8, 2014 15:25
Show Gist options
  • Save rsayers/305c4d0ee846d0b2455a to your computer and use it in GitHub Desktop.
Save rsayers/305c4d0ee846d0b2455a to your computer and use it in GitHub Desktop.
Get the latest XKCD
#!/bin/sh
IMG=`curl www.xkcd.com | grep "Image URL" | awk -F": " '{print $2}'`
curl $IMG > foo.png
curl www.xkcd.com | grep "img.*title=" | awk -F "title=\"" '{print $2}' | awk -F "\"" '{print $1}' | mailx -a foo.png -s "XKCD" YOU@HOST.COM
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment