On Wed, Apr 24, 2002 at 07:21:06AM +0200, Frederic Lochon (crazyfred) wrote:
> Hello,
> 
> I'd like to know if there is a simple way to 'mirror' only the images
> from a galley (ie. without thumbnails).

Depends on what you'd call "easy" I guess, apart from Jens' suggestion, you
might want to take a look at piping the output to stdout and do various
voodoo with it and then spawn another wget to read the output, something
like... (using GNU's grep, really scary people could just use "perl -e
'while(<>){something($_);}'" or sed/awk or whatever fetish they have)

 $ wget -qO- http://www.somedomain.com/gallery.html | grep -i href= | \
   grep -Ei "jpg|jpeg|png" | wget -Fi- -B http://www.somedomain.com/

...might just work if all you want is the "mirror only images that are a
link", without having to download the thumbnails (this is just a silly
example and far from perfect in any way, but you get the idea). However this
might only be feasible in a *nix environment, I have no idea how That Other
Popular OS would work in this matter but I doubt they bundle it with GNU
grep.

...
> PS: sorry if these questions are recurent, I don't have time to read
> every post (on the news server at sunsite.dk) and I haven't seen any
> FAQ.

I don't think there is one, but perhaps a FAQ-page with the most common (and
not so common) questions that popup on the list from time to time might be a
good idea?


> Thanks,
> Frederic Lochon


-- 
Henrik van Ginhoven                                         [EMAIL PROTECTED]
"Storage for all kinds of waste                             http://mise.wox.org
 ...including humans"                                                   9799-5

Reply via email to