game1009newlogger/restart.sh
aozhiwei 3022b764b9 1
2020-03-26 14:34:42 +08:00

10 lines
257 B
Bash
Executable File

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