11 lines
271 B
Bash
11 lines
271 B
Bash
|
|
#!/bin/bash
|
||
|
|
cd $(cd "$(dirname "$0")" && pwd)
|
||
|
|
path=`pwd`
|
||
|
|
./stop.sh
|
||
|
|
|
||
|
|
echo "======================【启动】========================"
|
||
|
|
datetime=`date "+%Y-%m-%d.%H:%M:%S"`
|
||
|
|
|
||
|
|
echo "["$datetime"] 正在启动 Logic 服务器 [gateway_r]..."
|
||
|
|
|
||
|
|
$path/gateway_r $path/GateWay.txt
|