aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2025-06-02 18:28:10 +0800
committercrupest <crupest@outlook.com>2025-06-02 18:28:10 +0800
commit4390f309aee8dea8014714d3ef6539f40e10ebd3 (patch)
tree5fb0a9861e14b31011173c60375fd312a6b5fb5c
parent72800db7e71bbd696eebc75bd128c46546f53c33 (diff)
downloadcrupest-4390f309aee8dea8014714d3ef6539f40e10ebd3.tar.gz
crupest-4390f309aee8dea8014714d3ef6539f40e10ebd3.tar.bz2
crupest-4390f309aee8dea8014714d3ef6539f40e10ebd3.zip
feat(bashrc): make http(s)_proxy upper case.
-rw-r--r--store/home/bashrc6
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
}