mirror of
https://github.com/zhayujie/bot-on-anything.git
synced 2026-01-19 01:21:06 +08:00
20 lines
383 B
Bash
Executable File
20 lines
383 B
Bash
Executable File
#!/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 bot-on-anaything running."
|
|
exit -1;
|
|
fi
|
|
|
|
echo "The bot-on-anaything(${pid}) is running..."
|
|
|
|
kill ${pid}
|
|
|
|
echo "Send shutdown request to bot-on-anaything(${pid}) OK"
|
|
|
|
|
|
|