wget -c-o master. zip --no-check-certificate https://Github.com/mitsuhiko/flask/archive/master.zip
# Master.zip for file name
# https://... For the link
Wget is the most commonly used download command for Linux, and the usual gist is: "wget space + URL path to download the file."
For example: [linux]# wget http://www.test.com/xxxx/xxx.tar.gz
Where the-c parameter, support for the continuation of the breakpoint, download large files, if you do not pay attention to the termination, you can continue to use the command to download.
For example: [linux]# wget-c http://www.test.com/xxxx/xxx.tar.gz
Download github.com HTTPS link directly using wget, error
[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 Span class= "Hljs-number" >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 AUT Hority. To connect to github.com insecurely, use '--no-check-certificate '. Unable to establish SSL connection.
Add an option--no-check-certificate
[linux]# wget--no-check-certificate Https://github.com/mitsuhiko/flask/archive/master.zip
Can add another problem, save the file is master, unknown is what format. Add one more option-o xxx.
[linux]# wget-o master.zip--no-check-certificate https://github.com/mitsuhiko/flask/archive/master.zip
The master.zip is preserved, consistent with expectations. With the-c parameter, to achieve the breakpoint continued to pass, PERFECT.
Maximum results: [Linux] #wget-c-o master.zip--no-check-certificate https://github.com/mitsuhiko/flask/archive/master.zip
Dd
wget download HTTPS link