kefu_robot/restart.sh
aozhiwei 6ce8863209 1
2019-02-01 19:32:05 +08:00

10 lines
230 B
Bash
Executable File

#!/bin/bash
ps -ef|grep python|grep kefu_robot|grep -v grep
if [ $? -eq 0 ]; then
ps -ef|grep python|grep kefu_robot|grep -v grep|awk '{print $2}'|xargs kill -9
fi
cd bin
nohup python3 kefu_robot.py >> kefu_robot.out 2>&1 &