欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Mac os Terminal 使用代理

程序员文章站 2022-03-12 16:54:39
...

Mac os Terminal 使用代理

配置

curl https://ip.cn
{"ip": "x.x.x.x", "country": "xx省xx市", "city": "联通"}
export http_proxy=socks5://127.0.0.1:1086
export https_proxy=$http_proxy

# or 
export all_proxy=socks5://127.0.0.1:1086

验证

curl https://ip.cn
{"ip": "x.x.x.x", "country": "美国", "city": "Psychz"}

注:export仅对当前shell及其子进程生效

相关标签: 杂记