mirror of
https://github.com/zhayujie/chatgpt-on-wechat.git
synced 2026-07-20 21:57:14 +08:00
创建scripts目录,专门放调用脚本
This commit is contained in:
16
scripts/shutdown.sh
Executable file
16
scripts/shutdown.sh
Executable file
@@ -0,0 +1,16 @@
|
||||
#!/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"
|
||||
Reference in New Issue
Block a user