终端设置之——终端代理

一 概述

  • 终端设置代理
  • 移除代理

二 终端设置代理

2.1 Linux/Mac设置

1
2
3
4
5
//单独设置
export http_proxy=http://127.0.0.1:7890;
export https_proxy=http://127.0.0.1:7890;
//全部设置
export all_proxy=http://127.0.0.1:7890;

说明:7890端口为Clash端口,其他代理根据相应端口来设置

2.2 Windows设置

1
2
3
4
5
//单独设置
set http_proxy=http://127.0.0.1:7890;
set https_proxy=http://127.0.0.1:7890;
//全部设置
set all_proxy=http://127.0.0.1:7890;

三 移除代理

1
2
3
unset http_proxy
unset https_proxy
unset all_proxy