Proxy Switch
作者Lou Xiao创建时间2020-04-20 17:24:00更新时间2020-04-20 18:26:00
1.双击鼠标左键复制此行;2.单击复制所有代码。
1
function proxy_on(){
2
export https_proxy=http://127.0.0.1:8118
3
export http_proxy=http://127.0.0.1:8118
4
export HTTPS_PROXY=http://127.0.0.1:8118
5
export HTTP_PROXY=http://127.0.0.1:8118
6
export all_proxy=http://127.0.0.1:8118
7
}
8
9
function proxy_off(){
10
export https_proxy=
11
export http_proxy=
12
export HTTPS_PROXY=
13
export HTTP_PROXY=
14
export all_proxy=
15
export no_proxy=
16
}
文章目录