Download entire site, use command:
1 | wget -m http://www.yoursite/yourfolder/ |
If you want the pages that site links than using:
1 | wget -H -r --level=1 -k -p http://www.yoursite/yourfolder/ |
If you want to download only jpg files, then use:
1 | wget -A .jpg -l 3 -r http://www.yoursite/yourfolder/ |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | Some args of wget command : -r, -recursive Specify recursive download. -l, -level=NUMBER Maximum recursion depth (inf or 0 for infinite). -k, -convert-links Make links in downloaded HTML point to local files. -p, -page-requisites Get all images, etc. needed to display HTML page. -erobots=off: Ignore robots.txt files and just download -np: Don't go up to the parent directory -N: Only download NEWER files than what's already been downloaded -nd: No directory, by default wget creates a directory --wait=seconds specified number of seconds between the retrievals --random-wait the time is vary between 0.5 and 1.5 * wait seconds ( see wait option) |