On 2002.05.10 17:54 Brian Hechinger wrote:
> for files in `cat file_list.txt`; do
> wget "http://www.server.com/$files"
> done
One file per line?
if [ x$ANSWER = "xYES" ] ; then
cat file_list.txt | while read a ; do wget "$a" ; done
fi
--
tsch,
Jochen
Homepage: http://www.unixag-kl.fh-kl.de/~jkunz/