Skip to content

Instantly share code, notes, and snippets.

@alixcan
Forked from jwebcat/gist:5122366
Created February 24, 2019 14:32
Show Gist options
  • Save alixcan/24dbf99c3d8d6e0d1f9c4011f920be7b to your computer and use it in GitHub Desktop.
Save alixcan/24dbf99c3d8d6e0d1f9c4011f920be7b 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