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 | 4390f309aee8dea8014714d3ef6539f40e10ebd3 (patch) | |
tree | 5fb0a9861e14b31011173c60375fd312a6b5fb5c | |
parent | 72800db7e71bbd696eebc75bd128c46546f53c33 (diff) | |
download | crupest-4390f309aee8dea8014714d3ef6539f40e10ebd3.tar.gz crupest-4390f309aee8dea8014714d3ef6539f40e10ebd3.tar.bz2 crupest-4390f309aee8dea8014714d3ef6539f40e10ebd3.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 } |