macOS 终端 Terminal 走代理
程序员文章站
2022-06-30 15:51:06
...
设置 Http 代理
echo "alias proxy='export all_proxy=http://${proxy_addr}:${port}'" >> ~/.bash_profile && source ~/.bash_profile
设置 Socks5 代理
echo "alias proxy='export all_proxy=socks5://${proxy_addr}:${port}'" >> ~/.bash_profile && source ~/.bash_profile
取消代理
echo "alias unproxy='unset all_proxy'" >> ~/.bash_profile && source ~/.bash_profile
使用方法
proxy # 开始使用代理
unproxy # 停止使用代理