How do you use wget to download an entire site (domain A) when its resources are on another domain, (domain B)?
I've tried:
wget -r --level=inf -p -k -E --domains=domainA,domainB http://www.domainA

link|improve this question
Wow! No one after all this time? – Parsa Oct 1 '10 at 8:03
feedback

1 Answer

up vote 3 down vote accepted

wget --recursive --level=inf --page-requisites --convert-links --html-extension --span-hosts=domainA,domainB domainA

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.