저는 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.