I'm downloading porno from a website, but it only streams one after the other i.e. xxx001, xxx02, etc. Is there any quick method I can have it download the consecutive files?
Name:
Anonymous2006-09-14 5:33
for i in `seq -f %02g 1 $MAX`; do
wget www$i
done
# Where $MAX is the number of files
# this wasn't tested. Of course, you need a proper shell.