【linux】添加、查看、删除代理

every blog every motto: You can do more than you think.
https://blog.csdn.net/weixin_39190382?type=blog

0. 前言

添加、查看、删除代理 记录

1. 添加代理

export http_proxy=http://proxyAddress:port
export https_proxy=http://proxyAddress:port

2. 查看代理

env |grep -i proxy

3. 清除代理

unset http_proxy
unset https_proxy

你可能感兴趣的:(基知,linux,ubuntu)