Skip to content

Instantly share code, notes, and snippets.

@ThejanW
Forked from jwebcat/gist:5122366
Created July 15, 2017 16:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ThejanW/41d3ec5e846c80f06b69ebfd533b72b3 to your computer and use it in GitHub Desktop.
Save ThejanW/41d3ec5e846c80f06b69ebfd533b72b3 to your computer and use it in GitHub Desktop.
Properly download from github using wget and curl
wget --no-check-certificate --content-disposition https://github.com/joyent/node/tarball/v0.7.1
# --no-check-cerftificate was necessary for me to have wget not puke about https
curl -LJO https://github.com/joyent/node/tarball/v0.7.1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment