mac-命令窗口设置代理

42次阅读

共计 124 个字符,预计需要花费 1 分钟才能阅读完成。

#设置代理
export http_proxy='http://username:paasword@x.x.x.x:xx'
export https_proxy=$http_proxy

#取消代理
unset http_proxy
unset https_proxy

正文完
 0