Skip to content

Instantly share code, notes, and snippets.

@seven1m
Created November 15, 2015 02:37
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save seven1m/c4c9665ee4db114915ec to your computer and use it in GitHub Desktop.
Save seven1m/c4c9665ee4db114915ec to your computer and use it in GitHub Desktop.
Download the docs for a project from hexdocs.pm
#!/bin/bash
project=$1
wget --mirror -k -np http://hexdocs.pm/$project
ruby -e "puts ARGF.read.scan(/[A-Z]\\w*\\.[\\w\\.]+/).uniq.map { |l| 'http://hexdocs.pm/$project/' + l + '.html' }" hexdocs.pm/$project/dist/sidebar_items.js | wget --mirror -k -i -
wget --mirror -k http://hexdocs.pm/$project/extra-api-reference.html
@julien-leclercq
Copy link

really useful thanks !

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment