| > is it possible to download all "id's" - to download
> all pages - increasing id=0001 to id=0002 and so on
> each cycle?
Nope. But you can do this very easily in bash shell:
(i=0;
while test "$i" -lt 100; do
echo <http://www.example.com/?id=${i}">;
i=$[$i + 1]
done) > list.txt
Or on Windows platforms, with the cygwin-bash version, or with applications
such as excel I imagine.
I think there is also a tool to do that, but I forgot the name (shame on me)
| |