13 lines
248 B
Bash
Executable File
13 lines
248 B
Bash
Executable File
#! /bin/bash
|
|
|
|
./stop.sh
|
|
|
|
datetime=`date "+%Y-%m-%d.%H:%M:%S"`
|
|
|
|
echo "["$datetime"] 正在启动 Logic 服务器 [logicserver_r]..."
|
|
|
|
if [ "$1" == "Debug" ]; then
|
|
./logicserver_d LogicServerLinux.txt
|
|
else
|
|
./logicserver_r LogicServerLinux.txt
|
|
fi |