Last active
December 11, 2015 15:58
-
-
Save SuzanaK/4624017 to your computer and use it in GitHub Desktop.
Download from the new Springer Link Website via University Proxy
This file contains 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
# download Springer Link Books via University Proxy and add the ".pdf" file ending | |
export http_proxy="http://proxy.zfn.uni-bremen.de:3128"; | |
wget -r -l 1 --reject html,js,css,jpg,png --proxy-user STUD_IP_USERNAME --proxy-passwd STUD_IP_PASSWORD LINK_TO_BOOK; | |
for i in link.springer.com/content/pdf/*; | |
do j=`echo $i | cut -f 1`; j=$j".pdf"; | |
mv $i $j; | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment