you could probably just write a shell script for that. im not very experienced in this area, but I know you can do something like this:
Code:
for (( i = 0 ; i <= 5; i++ )); do wget `date`-$i; done
you will have to tell date what date format the files are named.
like if your files are blah101508-10.png, you will have to use
date +%m%d%y
this particular loop will go 5 times, just set it to a higher number
run date --help to see a list of what it can output.
you do need the (+) at the beginning though.
other characters are put into the date.
since date +%m%d%y gives you 101708, date +%m/%d/%y will give you 10/17/08
good luck,
rabbit2345