Skip to content

Instantly share code, notes, and snippets.

@SuzanaK
Last active December 11, 2015 15:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save SuzanaK/4624017 to your computer and use it in GitHub Desktop.
Save SuzanaK/4624017 to your computer and use it in GitHub Desktop.
Download from the new Springer Link Website via University Proxy
# 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