Open imfenghuang opened 7 months ago
# ~/.bash_profile # 这样每次加载 bash 或 zsh 时,以下函数会自动带上 startProxy () { echo "终端 开始 使用代理" # xxxx 为你使用的代理的端口,自行替换即可 export http_proxy="http://localhost:xxxx" export https_proxy="http://localhost:xxxx" } stopProxy () { echo "终端 结束 使用代理" export http_proxy= export https_proxy= }
source ~/.bash_profile
# 输入以下命令并回车 # 开启代理 startProxy # 关闭代理 stopProxy
curl -i https://www.google.com
1. 修改 bash 配置文件
2. 重新加载 .bash_profile
4. 开关代理
5. 测试启用代理是否成功