I'm trying to do something similar to a mirror using the following: wget -nc --cache=off -k -t999 -nH -q -r -l0 -np -Dhost http://host/D1 http://host/D2
Essentially, I want to recursively suck in everything on "host" below the directories D1 and D2, while converting all links to relative as we go. The problem is that, when there is a link from a file in D1 to a file in D2, the link is not converted to relative. Furthermore, it appears that if the *only* way to get to files in D2 is through links in D1, then *nothing* from D2 gets sucked over. Do I misunderstand the use of multiple URLs being listed after the options, or is this a bug?
