You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/bin/bash
-
- #关闭服务
- cd `dirname $0`/..
- export BASE_DIR=`pwd`
- pid=`ps ax | grep -i app.py | grep "${BASE_DIR}" | grep python3 | grep -v grep | awk '{print $1}'`
- if [ -z "$pid" ] ; then
- echo "No chatgpt-on-wechat running."
- exit -1;
- fi
-
- echo "The chatgpt-on-wechat(${pid}) is running..."
-
- kill ${pid}
-
- echo "Send shutdown request to chatgpt-on-wechat(${pid}) OK"
|