Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 487 Bytes

cmd-proxy.md

File metadata and controls

21 lines (16 loc) · 487 Bytes

设置终端代理环境

rem 使用sock5代理
rem socks5://127.0.0.1:1080
set http_proxy=socks5://127.0.0.1:1080
set https_proxy=socks5://127.0.0.1:1080

rem 使用http代理
rem http://127.0.0.1:7890
set http_proxy=http://127.0.0.1:7890
set https_proxy=http://127.0.0.1:7890

rem 如果你要取消设置
set http_proxy=
set https_proxy=

curl -I www.google.com