wget download HTTPS link

Source: Internet
Author: User
Tags ssl connection

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

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.