| > I'm trying to grab a website that has several tags like
(ax)
> (ab) (xpto) etc in files. Eg:
> I basically tried to exclude some like
> httrack '-*(ax)*' but it doesn't work as it should.
Humm, this is a problem in the handling of scan rules (less
powerful than regexp, but much simpler too). The *(ax)
thing means "optionally, any a or x characters" in the
rule. If you want (ax), you have to escape ( and ) using
character match (*[chars]):
'-**[(]ax*[)]*'
(yes, the syntax is a bit twisted)
| |