通过代理上网的时候,会遇到很多的问题。特别是利用终端去下载软件的时候更是如此。
export http_proxy=http://代理ip:端口
export https_proxy=http://代理ip:端口
这两天指令可以让当前终端端口的下载指令都通过设置的代理下载数据。但是一旦关闭当前端口,设置就会失效。
但通过下面的方式可以将设置的内容保存下来,每次新建一个终端的端口仍然可以使用设置的代理。
vim ~/.bash_profile
可以编辑.bash_profile的文件内容,设置https/http代理
source ~/.bash_profile
cat ~/.bash_profile
通过上面三个命令,之后每次新建的终端都是可以使用设置好的代理,而不用每次新建一个终端都需要输入export 命令分别设置http、https代理了。
echo $http_proxy
echo $https_proxy
两个命令可以查看当前的http、https代理
name | function |
---|---|
echo $http_proxy | check http porxy |
echo $https_proxy | check https proxy |
export http_proxy=http://ip:port | set http proxy |
export https_proxy=https://ip:port | set https proxy |
export ALL_proxy=http://ip:port | set http&https proxy |
vim ~/.bash_profile | edit Mac proxy file |
source ~/.bash_profile | save .bash_profile settings |
cat ~/.bash_profile | use .bash_profile settings |