Cmder设置代理
Posted qinto
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Cmder设置代理相关的知识,希望对你有一定的参考价值。
默认模式:http代理
set http_proxy=http://127.0.0.1:7008
set https_proxy=http://127.0.0.1:7008
bash模式:sock5代理
export https_proxy=socks5://127.0.0.1:1080
export http_proxy=socks5://127.0.0.1:1080
PowerShell :http代理
$env:http_proxy=http://127.0.0.1:7008
$env:https_proxy=http://127.0.0.1:7008
检测命令:curl www.google.com
以上是关于Cmder设置代理的主要内容,如果未能解决你的问题,请参考以下文章