Re: How to download multiple "numbered" files with wget



Theo v. Werkhoven wrote:

http://bla.edu/~foouser/1.html
http://bla.edu/~foouser/2.html
...
http://bla.edu/~foouser/100.html

for i in $(seq 100);do curl -O http://bla.edu/~foouser/$i.html;done

Theo

as stated above, this works really well. but i just wondered, how to make it for files like .../001.htm ... possibly a little more difficult?

greets christian
(who really needs to learn how to bash)


.