1. 仅设置http和https代理(只对当前终端有效)
export http_proxy=http://proxyAddress:port
export https_proxy=http://proxyAddress:port
2. 仅设置socks5代理(只对当前终端有效,代理地址假设为socks5://127.0.0.1:1080)
export ALL_PROXY=socks5://127.0.0.1:1080
3. 长期设置需要将上述命令加入bash profile
4. 通过alias来快速切换
alias setproxy="export ALL_PROXY=socks5://127.0.0.1:1080"
alias unsetproxy="unset ALL_PROXY"
alias ip="curl -i http://ip.cn"