如何暂时删除代理设置?

如何暂时删除代理设置?

我使用以下命令设置代理设置

export http_proxy=http://proxyusername:proxypassword@proxyaddress:proxyport

当我做

echo $http_proxy

我明白了

http://cavs@students:[email protected]:80

但是当我这样做

unset $http_proxy

我收到错误

-bash: unset: `http://cavs@students:[email protected]:80': not a valid identifier

所以我做了

$http_proxy = ""

这也给了我以下错误

-bash: http://cavs@students:[email protected]:80: No such file or directory

我如何彻底删除此代理设置?

答案1

正确的使用方法unset是不带$,因此您可以执行以下操作:

unset http_proxy

取消设置您的代理设置,或者您甚至可以使用以下命令:

http_proxy=""

请注意, 之前和 之后没有空格=

相关内容