Last active
January 23, 2019 19:25
-
-
Save raybuhr/46ffda443e16e26e6472c24a291ea0e6 to your computer and use it in GitHub Desktop.
download html ebooks from Safari Books Online
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
#!/bin/bash | |
wget --mirror \ | |
--recursive \ | |
--convert-links \ | |
--no-parent \ | |
--domains learning.oreilly.com \ | |
--random-wait \ | |
--adjust-extension \ | |
--header='cookie: cd_user_id=...; BrowserCookie=...; timezoneoffset=21600; csrfsafari=...; sign-on-email="..."; sessionid=...; logged_in=y;' \ | |
"${book_url}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment