sh iterm_proxy.sh
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh iterm_proxy.sh相关的知识,希望对你有一定的参考价值。
// 给iTerm终端设置代理
## 1.设置代理
使用 curl,wget,brew等http应用程序会调用http_proxy和https_proxy这两环境变量进行代理,通过下面方式设置:
```
export http_proxy=http://127.0.0.1:8087
export https_proxy=$http_proxy
```
## 2.取消设置
```
unset http_proxy https_proxy
```
## 3.快速切换
可以在 ~/.zshrc 或者 ~/.bash_profile 中添加这样的alias:
```
alias goproxy='export http_proxy=http://127.0.0.1:8087 https_proxy=http://127.0.0.1:8087'
alias disproxy='unset http_proxy https_proxy'
```
这样下次就可以很方便地切换proxy了!
以上是关于sh iterm_proxy.sh的主要内容,如果未能解决你的问题,请参考以下文章
如何使我的命令行在具有扩展名(.sh)和名称如“weird.sh.sh.sh”的文件上工作
sh sh_template.sh
sh sh.sh
Linux下面如何运行 SH文件
配置告警系统主脚本main.sh mon.sh load.sh 502.sh disk.sh
shell 脚本各种执行方式(source ./*.sh, . ./*.sh, ./*.sh)的区别