Shell 走代理
我使用的是 clash ,在端口 7890 监听 Http 协议 1 2 3 # export http_proxy=http://proxyAddress:port export http_proxy=http://127.0.0.1:7890 export https_proxy=http://127.0.0.1:7890 TCP 协议(socket5, ss, ssr) 1 2 export http_proxy="socks5://127.0.0.1:7890" export https_proxy="socks5://127.0.0.1:7890" 或者干脆设置所有的代理 1 export ALL_PROXY=socks5://127.0.0.1:7890 取消代理 ALL_PROXY ,其他同理 1 unset ALL_PROXY