| > Would it be possible to do something like this?> Get every Page like this:
> img.php?id=1 ... img.php?id=1000
> So that I get 1000 Pictures?
Not implemented in httrack ; but you can do this using
scripting:
(i=0; while test $i -le 1000; do
echo <http://www.example.com/img.php?id=$i>; i=$[$i+1];
done) > mylist.txt
And then, use mylist.txt as parameter for the "URL list"
option in httrack.
| |