>>
>>52315
Yeah, I don't think that's necessary. On unix, one would do something not entirely unlike this:
wget -o /tmp/mun_temppi.$$ $1
grep -o <*img +src[ \t]*=[ \t]*\"[[^\"].]*\.[(jpg)(gif)(png)]\".*[(>.*</img>)(/.*>)] - $1 > /tmp/mun_temppi.$$
cat /tmp/mun_temppi.$$ | grep -o [[^\"].]*\.[(jpg)(gif)(png)] > mun_temppi.$$
cat /tmp/mun_temppi.$$ | wget
rm /tmp/mun_temppi.$$
I haven't tested this.