
Maybe things will turn out for the better this year. I still don't see any flying cars though :(.
Happy 2008 everyone!
Stories Of Nerdy Adventures (Now With 100% More Cetaceans)
grab.sh
:
#!/bin/bash
while read i; do wget -c --tries=0 $i; done
downloadlist.sh
calls the first and sends an email when done:
#!/bin/bash
cat $1 | grab.sh
echo "Your downloads are done" | mail -s "Download notifier" myname@myemail.com
$ ./downloadlist.sh listofurls