我使用“curl -sO”命令从此GitHub项目链接下载项目文件:
http://github.com/ziyaddin/xampp/archive/master.zip

但是,我无法下载。发生错误,并说:

Archive:  /home/ziyaddin/Desktop/master.zip
[/home/ziyaddin/Desktop/master.zip]   End-of-central-directory
signature not found.  Either this file is not   a zipfile, or it
constitutes one disk of a multi-part archive.  In the   latter case
the central directory and zipfile comment will be found on   the last
disk(s) of this archive. zipinfo:  cannot find zipfile directory in
one of /home/ziyaddin/Desktop/master.zip or
          /home/ziyaddin/Desktop/master.zip.zip, and cannot find
/home/ziyaddin/Desktop/master.zip.ZIP, period.

但是我可以使用curl命令下载此链接:
http://cloud.github.com/downloads/pivotal/jasmine/jasmine-standalone-1.3.1.zip

我认为这是因为它在cloud.github.com中。我想知道如何使用curl命令从第一个链接下载?

最佳答案

curl -L -O https://github.com/ziyaddin/xampp/archive/master.zip
  • 您必须使用https://
  • 您必须使用-L来跟随重定向
  • 10-07 19:44
    查看更多