Nick Rout wrote:

I know how to use curly brackets to operate on a range of parameters
like this:

wget www.example.org/pub/download/file{01,02,03,04,05,06,07,08,09}

However it can be tedious to type all that. Is there a way of doing it
with a range, like this:

wget www.example.org/pub/download/file{01-09}

or do I have to use some form of loop?


I think wget will allow wildcards only for ftp connections, so you'll need a loop...

for i in ...
do
 wget $i
done


Steve

Reply via email to