Skip to content

Instantly share code, notes, and snippets.

Created April 9, 2011 20:12
Show Gist options
  • Save anonymous/472ab79096be04ca6056 to your computer and use it in GitHub Desktop.
Save anonymous/472ab79096be04ca6056 to your computer and use it in GitHub Desktop.
El-suck
### Collected by hand from http://tinyurl.com/3q6srhn
jmb_volume_list.txt
## Used to get all volumes
wget --user-agent foo -Fi jmb_volume_list.txt --base=http://www.sciencedirect.com -r -l 1
## Used to get all issues
perl -ne '
@m=/(<A HREF="\S+?">Volume \d+, Issue \d<\/A>)/g;
print "$_\n" for @m
' www.sciencedirect.com/science* > jmb_issue_list.txt
wget --user-agent foo -Fi jmb_issue_list.txt --base=http://www.sciencedirect.com -r -l 1
## Used to get all PDFs
perl -ne '
@m=/<a href="(http:\S+?\.pdf)".*?> PDF.*?<\/a>/g;
print "$_\n" for @m
' www.sciencedirect.com/science* > jmb_pdf_list.txt
wget --user-agent foo -i jmb_pdf_list.txt -P PDF/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment