Linux配置http网络代理
配置环境变量名称
http_proxy 和 https_proxy
#!/bin/bash
export http_proxy="http://192.168.3.100:29693"
export https_proxy="http://192.168.3.100:29693"取消变量
unset http_proxy
unset https_proxy 配置环境变量名称
http_proxy 和 https_proxy
#!/bin/bash
export http_proxy="http://192.168.3.100:29693"
export https_proxy="http://192.168.3.100:29693"取消变量
unset http_proxy
unset https_proxy