我在 Ubuntu ThinkStation 桌面上运行 Ubuntu Linux 16.10。我刚才使用 bash 脚本在我们的第二台 Ubuntu Linux 16.04 桌面计算机上按以下方式重新启动和停止单一服务:
mono-service -l:${LOCK_FILE} ./${PROGRAM_NAME}.exe &
我们如何以编程方式判断 bash 脚本是否成功启动或停止单服务 -l:${LOCK_FILE} ./${PROGRAM_NAME}.exe?
We know that if one runs ps aux , they can observe if the bash script was succesful in starting or stopping mono-service. But, that is
不是一个程序化的解决方案。
Any help is greatly appreciated.