hkadejo | 14 years ago | on: All Hacker Monthly issues free for next ~24 hours
#!/bin/bash
X=1
while [ $X -le 19 ]
do
if [ $X -lt 10 ]; then
n="00$X"
else
n="0$X"
fi
wget "http://hackermonthly.com/xmas/hackermonthly-issue$n.zip
X=$(( $X + 1 ))
done