终端配置代理
hanpy

Mac配置了Vpn,在浏览器中访问可以,但是在命令行中就不可以,需要配置http_proxy每次重新打开都要输入一下命令,太麻烦,写两个函数扔到.zshrc

设置代理函数

1
2
3
4
5
6
7
8
9
10
11
12
13
function proxy_on() {
export http_proxy=http://127.0.0.1:xxxx
export https_proxy=http://127.0.0.1:xxxx
echo "已开启代理"
}
function proxy_off() {
unset http_proxy
unset https_proxy
echo "已关闭代理"
}

# 查看IP来源
alias ip_info="curl http://www.cip.cc/"

使用方法

在终端直接运行下面的命令(要先执行 source ~/.zshrc )
proxy_on 即可打开终端http代理
proxy_off 关闭终端http代理
ip_info 查看IP来源信息