-
-
Save kaungmyathtut131989-afk/9678d0433d1eb40bda881a27355e04af to your computer and use it in GitHub Desktop.
download a wiley PDF by DOI
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| wget \ | |
| --header "User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36" \ | |
| --verbose \ | |
| --save-cookies cookies.txt \ | |
| --keep-session-cookies \ | |
| --content-disposition \ | |
| http://onlinelibrary.wiley.com/doi/$1/pdf \ | |
| -O `echo "$1" | tr '/' '☍'`.pdf | |
| sleep 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment