10
7
How would I download a list of files from a file server like this one http://www.apache.org/dist/httpd/binaries/ ?
I suppose I could use wget but then it tries to get all the links and the html file as well. Is there a better tool to accomplish this?
just to clarify your question: you just want the list of files which could be downloaded from the server, not the files itself (yet)? – akira – 2009-09-26T04:57:10.400
In what way is a command like
wget --no-verbose --spider --no-directories --recursive --level=2 http://www.apache.org/dist/httpd/binaries/
not working for you? If you could be more specific that might help – DaveParillo – 2009-09-26T05:02:11.247