diff --git a/docs/daily/2024-09.md b/docs/daily/2024-09.md index 8ca8599a92..43f5b16e31 100644 --- a/docs/daily/2024-09.md +++ b/docs/daily/2024-09.md @@ -1,3 +1,17 @@ +## 9月18日 +- cmd下 + - 查看环境变量 echo %http_proxy% + - 设置环境变量 + - set http_proxy=http://127.0.0.1:7897 + set https_proxy=http://127.0.0.1:7897 +- bash下 + - 查看环境变量 echo $HTTP_PROXY + - 设置环境变量 + - export https_proxy=http://127.0.0.1:7897 http_proxy=http://127.0.0.1:7897 all_proxy=socks5://127.0.0.1:7897 +- PowerShell下 + - 查看环境变量 $env:http_proxy + - 设置环境变量 + - $env:HTTP_PROXY="http://127.0.0.1:7897"; $env:HTTPS_PROXY="http://127.0.0.1:7897" ## 9月4日 cron vue3 - https://abichinger.github.io/vue-js-cron/demo.html