Mirror a Remote Directory over HTTP
Different ways to mirror a remote directory:
1wget -r --no-parent http://server/location
If there are any files you don't want you can add the --reject option: <
1wget -r --no-parent --reject="tmp*" http://server/location
1curl