I found these instructions: You want to download all the GIFs from a directory on an HTTP server. You tried wget http://www.server.com/dir/*.gif, but that didn't work because HTTP retrieval does not support globbing. In that case, use:
wget -r -l1 --no-parent -A.gif http://www.server.com/dir/ That allowed me to grab an entire directory of maps for my game without any interaction. Just 'cd' to the right directory and fire away. --- Bob Miller <[EMAIL PROTECTED]> wrote: > Did you find "wget -r -np url..." ? > > Mr O wrote: > > > Scratch that. Found the info already. Wget will do it in a > > sense. __________________________________ Do you Yahoo!? SBC Yahoo! - Internet access at a great low price. http://promo.yahoo.com/sbc/ _______________________________________________ EUGLUG mailing list [EMAIL PROTECTED] http://www.euglug.org/mailman/listinfo/euglug
