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 | 447b2d7b59333766ddc434e7a48320ed555bb8fd (patch) | |
tree | a70e8cf887d6ae133aa19a87d92d9e3bae4a84fe | |
parent | dac1e7b63cdffe54aa70c50c4d2d838532e3a5b8 (diff) | |
download | crupest-447b2d7b59333766ddc434e7a48320ed555bb8fd.tar.gz crupest-447b2d7b59333766ddc434e7a48320ed555bb8fd.tar.bz2 crupest-447b2d7b59333766ddc434e7a48320ed555bb8fd.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 } |