diff options
author | crupest <crupest@outlook.com> | 2025-06-02 18:28:10 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2025-06-02 18:28:10 +0800 |
commit | 7b697cf28c954456f697160db3eeffa5bf699297 (patch) | |
tree | 4977717809ac24a5e5f0865f0bd4176253b51443 | |
parent | 3701a54d1c71c166c18113d05a44ab7c932557b5 (diff) | |
download | crupest-7b697cf28c954456f697160db3eeffa5bf699297.tar.gz crupest-7b697cf28c954456f697160db3eeffa5bf699297.tar.bz2 crupest-7b697cf28c954456f697160db3eeffa5bf699297.zip |
feat(bashrc): make http(s)_proxy upper case.
-rw-r--r-- | store/home/bashrc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/store/home/bashrc b/store/home/bashrc index 7d31f23..1ab3b08 100644 --- a/store/home/bashrc +++ b/store/home/bashrc @@ -1,8 +1,8 @@ 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 https_proxy + unset HTTP_PROXY HTTPS_PROXY } |