game2006/server/bin/monitor.sh
aozhiwei 9fad4f67b3 1
2020-10-28 13:06:03 +08:00

12 lines
266 B
Bash

path_arr=$(echo $PWD|tr '/' '\n')
path_arr=(${path_arr})
GAME_ID=${path_arr[-5]}
if echo $GAME_ID | grep -q '[^0-9]'
then
echo 'game_id参数必须为数字'
exit 1
fi
python ../../third_party/tools/scripts/server/monitor.py gameserver${GAME_ID} '-n1 -i1'