Linux BASH 中 使用 http 代理

经常需要在Linux命令行中使用代理,大致如下操作:

编辑/home/user/.bashrc,在其中添加形如:

export http_proxy="http://127.0.0.1:8080"

再执行:

source .bashrc

即可。

如需全局代理可编辑/etc/environment加入同样内容。

需要注意的是,使用sudo执行的命令,需要同样方式修改/root/.bashrc