mac中命令行中设置代理

mac中命令行中设置代理

#设置代理,不需要用户名密码,就去掉username:paasword@
export http_proxy='http://username:[email protected]:xx'
export https_proxy=$http_proxy

#去掉代理
unset http_proxy
unset https_proxy

你可能感兴趣的:(mac中命令行中设置代理)