2014-03-11

如何使用 wget 下載 https 的檔案? (How do you use wget to download SSL links file?)


如何使用 wget 下載 https 的檔案?
如果你並不在意檔案的憑證,只要在命令後加入 --no-check-certificate 即可
例如
#wget --no-check-certificate https://www.example.com/somefile.link.tar.gz









Did you ever get the problem using wget to download https files?

It is easy if you don't care the
validity of the certificate. Just add the option --no-check-certificate after wget command, you'll get what you want.

For example:

#wget --no-check-certificate https://www.example.com/somefile.link.tar.gz

2 則留言:

  1. 網頁回應Unknown/unsupported protocol

    回覆刪除
    回覆
    1. unsupport 表示你的位址有誤,例如 ftp 打成 http

      假設你有個檔案 在 https://www.gnupg.org/ftp/gcrypt/gpgme/gpgme-1.6.0.tar.bz2 可以獲取
      你可以下以下指令,
      $ wget --no-check-certificate 'https://www.gnupg.org/ftp/gcrypt/gpgme/gpgme-1.6.0.tar.bz2'

      刪除