Thursday, October 30, 2014

Download Multiple files Recursively Using Wget Command in UNIX / Mac OSX

#!/bin/bash wget -r -nH --cut-dirs=2 --no-parent --reject="index.html*" -ic "URL-PATH/"

OPTIONS : -ic = download in recursively and continue with existed files --reject="index.html*" : reject all files with these pattern

No comments:

Post a Comment