iterm2 与 zsh使用参考:
使用代理
- 本例以
shadowsocks
为代理,其它工具配置相同
1、直接使用(本次启动的终端有效)
export http_proxy=http://127.0.0.1:1087;export https_proxy=http://127.0.0.1:1087;
2、配置别名(方便使用)
// 1、打开配置文件
vim ~/.zshrc
// 2、配置别名
alias setproxy='export http_proxy=http://127.0.0.1:1087;export https_proxy=http://127.0.0.1:1087;' # 设置终端代理
alias disproxy='unset http_proxy https_proxy' # 取消终端代理
alias ip='curl cip.cc' # 测试