0

I would like to recursively download a page, but block link like this containing "strony":

http://domain.com/rozrywka/strony/2/

my command is

wget -r -nd --delete-after -e robots=off -X strony http://domain.com

but it's still downloading them.

Marek Zakrzewski
  • 163
  • 1
  • 2
  • 11

1 Answers1

0

I finally found it ;)

It should be

-X */strony/*

and it works !

Marek Zakrzewski
  • 163
  • 1
  • 2
  • 11