Results 1 to 3 of 3
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)?...
- 11-13-2005 #1
wget - how to download all jpeg files from different sites
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)?
- 11-13-2005 #2unknownGuest
re:wget - how to download all jpeg files from different sites
I don't know that.
But Firefox's scrapbook extension will follow links to specific filetypes 3 levels deep.
- 11-13-2005 #3
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


Reply With Quote
