Skip to content

Instantly share code, notes, and snippets.

@raybuhr
Last active January 23, 2019 19:25
Show Gist options
  • Save raybuhr/46ffda443e16e26e6472c24a291ea0e6 to your computer and use it in GitHub Desktop.
Save raybuhr/46ffda443e16e26e6472c24a291ea0e6 to your computer and use it in GitHub Desktop.
download html ebooks from Safari Books Online
#!/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