Skip to content

Instantly share code, notes, and snippets.

@kaungmyathtut131989-afk
Forked from blahah/getwileydoi.sh
Created April 27, 2026 04:57
Show Gist options
  • Select an option

  • Save kaungmyathtut131989-afk/9678d0433d1eb40bda881a27355e04af to your computer and use it in GitHub Desktop.

Select an option

Save kaungmyathtut131989-afk/9678d0433d1eb40bda881a27355e04af to your computer and use it in GitHub Desktop.
download a wiley PDF by DOI
#!/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