如何使用 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
網頁回應Unknown/unsupported protocol
回覆刪除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'