1.设置快捷命令
vi ~/.bashrc
按 i 键进入 input 模式,粘贴:
alias sss='export http_proxy=http://192.168.1.190:1080 && export https_proxy=https://192.168.1.190:1080'
alias ssd='unset http_proxy && unset https_proxy'
:wq 保存退出
2.启用快捷命令
source ~/.bashrc
3.启动代理
sss
4.关闭代理
ssd
5.查看已开启的代理
env | grep -i proxy