jurgemaister

XKCD clickdrag downloader

Sep 19th, 2012
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.26 KB | None | 0 0
  1. #! /bin/zsh
  2.  
  3. baseURL="http://imgs.xkcd.com/clickdrag/"
  4. northsouth=('n' 's')
  5. eastwest=('e' 'w')
  6. extention=".png"
  7.  
  8. for ns in $northsouth
  9.     for i in {1..20}; do
  10.         for j in {1..20}; do
  11.             for ew in $eastwest; do
  12.                 wget $baseURL$i$ns$j$ew$extention
  13.             done
  14.         done
  15.     done
  16. done
Add Comment
Please, Sign In to add comment