# 设置

  1. vi ~/.bash_profile 添加下面内容
function proxy_off(){
    unset http_proxy
    unset https_proxy
    echo -e "代理已关闭"
}
function proxy_on() {
    export http_proxy="http://127.0.0.1:80"
    export https_proxy=$http_proxy
    echo -e "代理已开启"
}

127.0.0.1:80是代理服务,设置你自己的代理即可

  1. source ~/.bash_profile

# 使用

  1. 开启代理
proxy_on
  1. 关闭代理
proxy_off

# 验证

curl cip.cc

# 其他

export http_proxy=http://127.0.0.1:80 # 配置 http 代理
export https_proxy=http://127.0.0.1:80 # 配置 https 代理
或
export http_proxy=socks5://127.0.0.1:1080 # 配置 http 代理
export https_proxy=socks5://127.0.0.1:1080 # 配置 https 代理
或
export all_proxy=http://127.0.0.1:80 # 配置 http 和 https 代理
或
export all_proxy=socks5://127.0.0.1:1080 # 配置 http 和 https 代理