-
-
Save daxmc99/b70bf09d69c6ed18e9ad6bb1ab4f2c2e to your computer and use it in GitHub Desktop.
Properly download from github using wget and curl
This file contains hidden or 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
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