I am trying to download a tarball from github.com using curl but it does not seem to be redirecting:

$ curl --insecure https://github.com/pinard/Pymacs/tarball/v0.24-beta2
<html><body>You are being <a href="https://nodeload.github.com/pinard/Pymacs/tarball/v0.24-beta2">redirected</a>.</body></html>

Note: wget works for me:

$ wget --no-check-certificate https://github.com/pinard/Pymacs/tarball/v0.24-beta2

However I want to use curl because ultimately I want to untar it inline with something like:

$ curl --insecure https://github.com/pinard/Pymacs/tarball/v0.24-beta2 | tar zx

I found that the URL after redirecting turned out to be: https://download.github.com/pinard-Pymacs-v0.24-beta1-0-gcebc80b.tar.gz but I would like curl to be smart enough to figure this out.

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

I didn't google properly. Use the -L option.

$ curl -L https://github.com/pinard/Pymacs/tarball/v0.24-beta2 | tar zx

via http://support.github.com/discussions/repos/1789-you-cant-download-a-tarball-with-curl

link|improve this answer
For https, you'll also likely need -k. – nicerobot Dec 29 '11 at 0:41
feedback

you can also use wget to »untar it inline«, simply specify stdout as output file (-O -):

wget --no-check-certificate https://github.com/pinard/Pymacs/tarball/v0.24-beta2 -O - | tar xz
link|improve this answer
feedback

Here you find a Way to Download any kind of Redirected files: http://howto.sviluppo-siti-web.com/content/curl-download-withredirection-redirect-redirected-dynamiclink-file

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.