Linux命令行设置代理
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 ~/.bashr……