Files
FastGPT/files/deploy/fastgpt/clash/stop.sh
archer cd2fd77df1 docs
2023-07-26 22:07:00 +08:00

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