> I want to know if its possible to generate sitemap
> using Httrack. something similar to google sitemap.
not directly. It would be easy to scan the html files and extract the
original url and title with sed:
dir/s *.html|findstr /f:/ "Mirrored TITLE"|sed -f genMap.sed > sitemap.txt
|