blob: e59b2a42ccd953578b0b375268880e3ed0d4476c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
set-proxy() {
export http_proxy="http://127.0.0.1:7897"
export https_proxy="http://127.0.0.1:7897"
export HTTP_PROXY="http://127.0.0.1:7897"
export HTTPS_PROXY="http://127.0.0.1:7897"
}
unset-proxy() {
unset http_proxy
unset https_proxy
unset HTTP_PROXY
unset HTTPS_PROXY
}
|