標籤:cte arc cert 報錯 nec nbsp www 檔案 是什麼
wget -c -O master.zip --no-check-certificate https://github.com/mitsuhiko/flask/archive/master.zip
# master.zip 為檔案名稱
# https://... 為連結
wget是linux最常用的下載命令, 通常的運用要領是: “wget 空格+要下載檔案的url路徑”。
比方 : [linux]# wget http://www.test.com/xxxx/xxx.tar.gz
其中-c參數, 支援斷點續傳, 下載大檔案時,假如不注意終止了, 能夠繼續運用命令接著下載。
比方 : [linux]# wget -c http://www.test.com/xxxx/xxx.tar.gz
直接使用wget下載github.com HTTPS連結,報錯
[linux]# wget https://github.com/mitsuhiko/flask/archive/master.zip
[root@11_09 ~]# wget https://github.com/mitsuhiko/flask/archive/master.zip--2013-08-18 12:55:24-- https://github.com/mitsuhiko/flask/archive/master.zipResolving github.com... 204.232.175.90Connecting to github.com|204.232.175.90|:443... connected.ERROR: cannot verify github.com‘s certificate, issued by `/C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert High Assurance EV CA-1‘: Unable to locally verify the issuer‘s authority.To connect to github.com insecurely, use `--no-check-certificate‘.Unable to establish SSL connection.
增加一個選項--no-check-certificate
[linux]# wget --no-check-certificate https://github.com/mitsuhiko/flask/archive/master.zip
可又增加一個問題,儲存下來的檔案是master,未知是什麼格式。再增加一個選項-O xxx。
[linux]# wget -O master.zip --no-check-certificate https://github.com/mitsuhiko/flask/archive/master.zip
儲存下來的是master.zip,與預想一致。配合-c參數,實現斷點續傳,PERFECT。
最絡結果:[linux]#wget -c -O master.zip --no-check-certificate https://github.com/mitsuhiko/flask/archive/master.zip
dd
wget下載HTTPS連結