| > Anyone can tell me a simple script using 'httrack --
quiet --
> get' to get a site with the following parameters
> Max mirror depth = 2
> Max external Depth = 0
> Max size of non-html file = 50k
> No of connection = 32
httrack --quiet --depth=2 -**[>50]
+*.www.yousite.com/*.html --sockets=32
(note: external depth == 0 is the default, and you have to
replace "www.yousite.com" by the site name)
> will not download 404 not found pages
Add the option
--generate-errors=0
(see httrack --help to list all options)
> Can I use the saved <sitename>.whtt file as parameter
input?
No -- this is only a link to the project directory.
> BTW can I get any reference for the httrack parameters?
httrack --help
| |