Linux 終端機#
Linux 上的 v2rayA
- 單次使用當前 shell 的 Proxy
export http_proxy="http://127.0.0.1:20171"
export https_proxy="http://127.0.0.1:20171"
- 檢查是否成功
echo $http_proxy
echo $https_proxy
Windows 終端機#
Windows 上的 Clash
- 當前 shell
$env:HTTP_PROXY="http://127.0.0.1:7890"
$env:HTTPS_PROXY="http://127.0.0.1:7890"
set http_proxy=http://127.0.0.1:7890
set https_proxy=http://127.0.0.1:7890