mac终端设置代理shell
终端代理配置 开启后每次打开终端都生效
function proxy_off(){
unset http_proxy
unset https_proxy
echo -e "已关闭代理"
}
function proxy_on() {
proxyopen
export http_proxy="http://127.0.0.1:1087"
export https_proxy=$http_proxy
echo -e "已开启代理"
}
vim ~/.bash_profile
source ~/.bash_profile
具体的的代理连接配置你要根据自己使用的工具来定,譬如我使用的是 shadowscoket 上面有复制代理命令选项,拿来放到bash中即可。
curl ip.gs
这时看到的自己ip信息是在国内,但:
有时需要临时代理才达到目的可以这样操作:
export http_proxy=http://127.0.0.1:1087;export https_proxy=http://127.0.0.1:1087; curl ip.gs