Files
FastGPT/docs/deploy/fastgpt/clash/stop.sh
archer 1e262a2198 docs
2023-05-10 15:18:16 +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