View Single Post
  #2   (View Single Post)  
Old 28th August 2014
Mike-Sanders Mike-Sanders is offline
Fdisk Soldier
 
Join Date: Dec 2012
Posts: 52
Default

Speaking xkcd... this script will fetch a random cartoon for you (great in the morning with a cup of coffee)

Code:
#!/bin/sh

wget -q http://dynamic.xkcd.com/comic/random/ -O - | \
grep 'hotlinking/embedding' | cut -d: -f 2-3 | \
wget -q -i - -O /tmp/xkcd.jpg

# your-image-viewer-here /tmp/xkcd.jpg
__________________
www.tacoshack.xyz
Reply With Quote