powershell 设置代理
powershell
# 当前 shell 的代理
$env:HTTP_PROXY="http://127.0.0.1:1080"
cmd
rem 当前 shell 的代理
set http_proxy=http://127.0.0.1:1080
# 当前 shell 的代理
$env:HTTP_PROXY="http://127.0.0.1:1080"
rem 当前 shell 的代理
set http_proxy=http://127.0.0.1:1080