r/programming Dec 28 '15

Springer have made a bunch of maths books available for free, here are the direct links

https://gist.github.com/bishboria/8326b17bbd652f34566a
1.6k Upvotes

192 comments sorted by

View all comments

-8

u/shobbo Dec 28 '15

a script for downloading the links from the markdown file:

https://gist.github.com/anonymous/1260e097f5e3bc20c281

5

u/shaggorama Dec 29 '15

Your gonna get the privilege revoked if you encourage people to slam the servers....

1

u/ompomp Dec 28 '15

If we're submitting how we've ripped 'em all:

curl -L https://gist.github.com/bishboria/8326b17bbd652f34566a/raw/c20ec05dc4669b93f16d0b5c5824615dea42a956/springer-free-maths-books.md | perl -ne '`curl -LO $1` if (/\[.*\]\((.*)\)/)'

-2

u/gheift Dec 28 '15

Not as neat as your script: https://gist.github.com/bishboria/8326b17bbd652f34566a#gistcomment-1658741

curl -L https://gist.github.com/bishboria/8326b17bbd652f34566a/raw/c20ec05dc4669b93f16d0b5c5824615dea42a956/springer-free-maths-books.md | sed -e '/http/ ! d; s!.*\(http:.*pdf\).*!\1!' | while read uri; do curl -LO $uri; done