正确返回程序的语法

时间:2017-11-16 21:42:45

标签: linux bash shell

我是bash脚本的新手。我正在尝试创建备份脚本,我需要检查程序是否通过bash命令运行。

我的尝试:

echo -e "\e[36mCheck the return\e[0m"
if [ bash "$TSFOLDER"/ts3server_startscript.sh status == "Server is running"]; then
echo -e "\e[32m    ► Server is running\e[0m"
exit
else    
echo -e "\e[31m    ► Server is not running\e[0m"
fi

谢谢你

0 个答案:

没有答案