mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 13:03:50 +00:00
11 lines
232 B
Bash
11 lines
232 B
Bash
export ALL_PROXY=''
|
|
export http_proxy=''
|
|
export https_proxy=''
|
|
export HTTP_PROXY=''
|
|
export HTTPS_PROXY=''
|
|
OLD_PROCESS=$(pgrep clash)
|
|
if [ ! -z "$OLD_PROCESS" ]; then
|
|
echo "Killing old process: $OLD_PROCESS"
|
|
kill $OLD_PROCESS
|
|
fi
|