技术解析
前端时间在 wsl 设置了代理
export http_proxy=127.0.0.1:7890
export https_proxy=127.0.0.1:7890
现在想取消代理,用了如下命令
export http_proxy=
export https_proxy=
也尝试过用
unset http_proxy
unset https_proxy
但是只能在当前窗口有效,我重开 windows terminal 发现没取消成功,怎么才能永远取消代理设置呢