Your problem is in `robots.txt`. Wget looks on it and sees
User-agent: *
Disallow: /
You can use tell wget to ignore the `robots.txt` file:
wget -A.pdf -r -nd -e robots=off
And it will work.
Your problem is in `robots.txt`. Wget looks on it and sees
User-agent: *
Disallow: /
You can use tell wget to ignore the `robots.txt` file:
wget -A.pdf -r -nd -e robots=off
And it will work.