Hacker News new | past | comments | ask | show | jobs | submit login

I used this small Python program to download the entire set of PDFs:

  import urllib
  for i in range(14173, 14197):
      url = "http://jacquesricher.com/NEETS/%d.pdf" % i
      print url
      urllib.urlretrieve(url, "%d.pdf" % i)



With curl:

  curl -O 'http://jacquesricher.com/NEETS/[14173-14196].pdf'
Here's a way to do 4 downloads in parallel:

  for ((i=14173; i<14197; i++)); do
    echo http://jacquesricher.com/NEETS/$i.pdf
  done | xargs -n 1 -P 4 curl -O
Another trick for parallel execution is to generate a makefile then use make -j.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: