shell update

This commit is contained in:
Gordon
2022-04-06 11:47:01 +08:00
parent 83228d8aa6
commit d720082644
4 changed files with 24 additions and 7 deletions
+11
View File
@@ -11,8 +11,19 @@ need_to_start_server_shell=(
sdk_svr_start.sh
demo_svr_start.sh
)
time=`date +"%Y-%m-%d %H:%M:%S"`
echo "==========================================================">>../logs/openIM.log 2>&1 &
echo "==========================================================">>../logs/openIM.log 2>&1 &
echo "==========================================================">>../logs/openIM.log 2>&1 &
echo "==========server start time:${time}===========">>../logs/openIM.log 2>&1 &
echo "==========================================================">>../logs/openIM.log 2>&1 &
echo "==========================================================">>../logs/openIM.log 2>&1 &
echo "==========================================================">>../logs/openIM.log 2>&1 &
for i in ${need_to_start_server_shell[*]}; do
chmod +x $i
./$i
if [ $? -ne 0 ]; then
exit -1
fi
done