shell 实现监控程运行并自动重启

199次阅读
没有评论

使用 ps 做进程查询

#!/bin/sh
while true
do
    procnum=`ps -ef|grep "testApp"|grep -v grep|wc -l`
    if [$procnum -eq 0]; then
      /root/testApp &
    fi
      sleep 5
done
正文完
 0
评论(没有评论)