bash – 无法使用curl命令下载github项目

前端之家收集整理的这篇文章主要介绍了bash – 无法使用curl命令下载github项目前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用“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 -LOk https://github.com/ziyaddin/xampp/archive/master.zip
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100   119  100   119    0     0    375      0 --:--:-- --:--:-- --:--:--   388
  0     0    0  1706    0     0   1382      0 --:--:--  0:00:01 --:--:--  333k

>你必须使用https://>您必须使用-L来跟踪重定向>如果您的证书文件丢失,则必须使用-k

原文链接:https://www.f2er.com/bash/386437.html

猜你在找的Bash相关文章