tags:

views:

41

answers:

3

I am trying to write a unix shell script to download all the files in a directory posted on a website. How would I go about doing this? Thanks playas

+2  A: 

man wget

jsumners
+4  A: 

You could make use of wget's flags:

--mirror

--no-parent 
Alan Haggai Alavi
A: 
wget -r -np http://example.com/directory/to/files
Marc B