You are not logged in.
Pages: 1
When i run the command...
wget -m http://www.website.com
It goes through and grabs everything except for images that are embeded in style sheets. I've searched all over looking for how to make wget process the image url in the style sheet but can't find anything. Below is an example of an image embeded in a style sheet.
body
{
margin: 0 0 0 0;
padding: 0 3 0 10;
background-image: url(../images/stripe.bmp);
}
I look in the images folder and stripe.bmp is not in there once wget completes. I've also tried 'wget -m -p http://www.website.com' still the same results. No stripe.bmp in the images folder.
Any ideas or should i switch over to another recursive downloader?
Thanks,
Blix
Offline
how about this
wget -rmp --accept *.[html,bmp] -I * ...
httrack works too.
Offline
Pages: 1