terminal、cmd、powershell设置代理

terminal设置代理:

export ALL_PROXY=socks5://127.0.0.1:1080

cmd设置代理:

set ALL_PROXY=socks5://127.0.0.1:1080

set HTTP_PROXY=socks5://127.0.0.1:1080

powershell设置代理:

$env:HTTP_PROXY="http://127.0.0.1:1080"

你可能感兴趣的:(terminal、cmd、powershell设置代理)