Downloading all ctrl alt del webcomics using terminal.
Posted
by Conner
on Stack Overflow
See other posts from Stack Overflow
or by Conner
Published on 2010-05-07T02:00:54Z
Indexed on
2010/05/07
2:08 UTC
Read the original article
Hit count: 375
I've tried using the following commands to download the ctrl alt del comics.
$ for filename in $(seq 20021023 20100503); do wget http://www.ctrlaltdel-online.com/comics/"$filename".jpg; done
I get the following error code, "bash: syntax error near unexpected token 'do'"
I've also tried using cURL, using this command,
curl http://ctrlaltdel-online.com/comics[20021023..20100503].jpg
I get the following error code, "curl: (3) [globbing] error: bad range specification after pos 37"
Any help would be great.
© Stack Overflow or respective owner