“Wget”的版本间的差异

来自姬鸿昌的知识库
跳到导航 跳到搜索
(建立内容为“ 不验证服务器的证书<syntaxhighlight lang="shell-session"> [root@iZj6c09e4pbixx5c6cuwzzZ ~]# wget --no-check-certificate https://github.com/jgraph/drawio…”的新页面)
 
第1行: 第1行:
  
  
不验证服务器的证书<syntaxhighlight lang="shell-session">
+
=== 安装 ===
 +
<syntaxhighlight lang="shell-session">
 +
[root@iZj6c09e4pbixx5c6cuwzzZ ~]# apt install -y wget
 +
</syntaxhighlight>
 +
 
 +
=== 不验证服务器的证书 ===
 +
<syntaxhighlight lang="shell-session">
 
[root@iZj6c09e4pbixx5c6cuwzzZ ~]# wget --no-check-certificate https://github.com/jgraph/drawio-desktop/releases/download/v20.2.3/draw.io-20.2.3-windows-installer.exe
 
[root@iZj6c09e4pbixx5c6cuwzzZ ~]# wget --no-check-certificate https://github.com/jgraph/drawio-desktop/releases/download/v20.2.3/draw.io-20.2.3-windows-installer.exe
 
</syntaxhighlight>
 
</syntaxhighlight>
  
  
使用代理<syntaxhighlight lang="shell-session">
+
 
 +
=== 使用代理 ===
 +
<syntaxhighlight lang="shell-session">
 
[root@iZj6c09e4pbixx5c6cuwzzZ ~]# wget -e use_proxy=on -e https_proxy=127.0.0.1:12345 https://github.com/jgraph/drawio-desktop/releases/download/v20.2.3/draw.io-20.2.3-windows-installer.exe
 
[root@iZj6c09e4pbixx5c6cuwzzZ ~]# wget -e use_proxy=on -e https_proxy=127.0.0.1:12345 https://github.com/jgraph/drawio-desktop/releases/download/v20.2.3/draw.io-20.2.3-windows-installer.exe
 
</syntaxhighlight>
 
</syntaxhighlight>

2022年8月14日 (日) 07:44的版本


安装

[root@iZj6c09e4pbixx5c6cuwzzZ ~]# apt install -y wget

不验证服务器的证书

[root@iZj6c09e4pbixx5c6cuwzzZ ~]# wget --no-check-certificate https://github.com/jgraph/drawio-desktop/releases/download/v20.2.3/draw.io-20.2.3-windows-installer.exe


使用代理

[root@iZj6c09e4pbixx5c6cuwzzZ ~]# wget -e use_proxy=on -e https_proxy=127.0.0.1:12345 https://github.com/jgraph/drawio-desktop/releases/download/v20.2.3/draw.io-20.2.3-windows-installer.exe