On 31 Jan 2002 at 9:25, Fred Holmes wrote: > wget -N http://www.karenware.com/progs/*.* > > fails with a "not found" whether the filespec is * or *.* > > The * syntax works just fine with ftp > > Is there a syntax that will get all files with http?
You could try wget -m -l 1 -n http://www.karenware.com/progs/ but it will only do what you want if the web server sends back a HTML-format directory listing (complete with links to each file), rather than some other document.
