WGET problem downloading pdfs from website
Asked Answered
N

1

9

I'm trying to download all of the pdfs and ppts from this website: http://mlss2011.comp.nus.edu.sg/index.php?n=Site.Slides

I do in Cygwin:

wget --no-parent -A.pdf,.pptx -r -l1 http://mlss2011.comp.nus.edu.sg/index.php?n=Site.Slides

but no files are downloaded.

What do I need to change in the above wget command for this to work?

Northwestwards answered 20/6, 2011 at 20:11 Comment(0)
N
16

needed to use the -e robots=off code, so this worked

wget -e robots=off -A.pdf,.pptx -r -l1 http://mlss2011.comp.nus.edu.sg/index.php?n=Site.Slides

Also in general, use the --debug flag for more help.

Northwestwards answered 21/6, 2011 at 17:1 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.