wget下载HTTPS链接
wget -c -O master.zip --no-check-certificate github/mitsuhiko/flask/archive/master.zip
# master.zip 为⽂件名
# ... 为链接
wget是linux最常⽤的下载命令, 通常的运⽤要领是: “wget 空格+要下载⽂件的url路径”。
其中-c参数, ⽀持断点续传, 下载⼤⽂件时,假如不注意终⽌了, 能够继续运⽤命令接着下载。
直接使⽤wget下载github HTTPS链接,报错
[root@11_09 ~]# wget github/mitsuhiko/flask/archive/master.zip
flask下载--2013-08-18 12:55:24-- github/mitsuhiko/flask/archive/master.zip
204.232.175.90
Connecting to github|204.232.175.90|: connected.
ERROR: cannot verify github's certificate, issued by `/C=US/O=DigiCert Inc/OU=www.digicert/CN=DigiCert High Assurance EV CA-1': Unable to locally verify the issuer's authority.
To connect to github insecurely, use `--no-check-certificate'.
Unable to establish SSL connection.
增加⼀个选项--no-check-certificate
可⼜增加⼀个问题,保存下来的⽂件是master,未知是什么格式。再增加⼀个选项-O xxx。
保存下来的是master.zip,与预想⼀致。配合-c参数,实现断点续传,PERFECT。
dd
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论