Is there a way how to tell fe wget to download all files from www address (or if it can follow links fe 4 levels deep)?
Printable View
Is there a way how to tell fe wget to download all files from www address (or if it can follow links fe 4 levels deep)?
I don't know that. :( But Firefox's scrapbook extension will follow links to specific filetypes 3 levels deep. :idea:
Try(replacing http://foo.bar.com with wherever you want to d/l the pics from).Code:wget -r -l4 --no-parent -A.jpg http://foo.bar.com
The -r makes it recursive, the -l4 makes it recursive for four levels, --no-parent means it will not get any parent directories, -A.jpg will get all .jpg files.
If you have a list of sites you want to do this in you could put them in a file and tryhope this helps,Code:wget -r -l1 --no-parent -A.gif -i file
dylunio