临时代理
临时代理bash与zsh都可使用,三行代码根据需要配置。
export https_proxy=https://localhost:port
export http_proxy=http://localhost:port
export all_proxy=socks5://localhost:port
永久代理
首先打开zsh配置文件 ~/.zshrc
在文件最后加入:
# 启用
proxy () {
export http_proxy="http://localhost:port"
export https_proxy="http://localhost:port"
echo "HTTP代理开启"
}
# 关闭
noproxy () {
unset http_proxy
unset https_proxy
echo "HTTP代理关闭"
}
编辑完后执行source ~/.zshrc
然后输入exit
退出zsh重新打开即可
使用方法:
➜ ~ proxy
HTTP代理开启
➜ ~ noproxy
HTTP代理关闭