| > I dont need to download the actual file. I just want
> to get all links to the pdf files, for example into
> an excel file. Is this doable with Httrack?
Err, not directly - you may, however, set the logs in "verbose" mode and
grepping something like "External: " from hts-log.txt
grep "External: " hts-log.txt | cut -f3 | cut -f2 -d' ' | grep -E "\.pdf$"
(on Windows, if you do not have any grepping facility installed, you may
consider installing cygwin)
| |