From: Williamts99

> Thanks for your response, I am using Linux.

   You might benefit from studying a shell scriping primer, like, for
example:

http://developer.apple.com/documentation/OpenSource/Conceptual/ShellScripting/index.html

Or try asking Google to look for something like:

      linux shell scripting primer

   Roughly, I'd start with something like this:

--------
#!/bin/sh

n_min=1
n_max=8

n=$n_min
while [ $n -le $n_max ] ; do

    echo "n = $n"
    n=` expr $n + 1 `

done

--------

   Adjust "n_min" and "n_max" as appropriate, and replace the "echo"
command with an appropriate "wget" command.

------------------------------------------------------------------------

   Steven M. Schweda               [EMAIL PROTECTED]
   382 South Warwick Street        (+1) 651-699-9818
   Saint Paul  MN  55105-2547

Reply via email to