摘要: #!/bin/sh while true; do processExist=`ps aux | grep xxx | grep -v "grep" ` if [ -z "$processExist" ];then echo "proecss is restarted" cd /MyData/xxx nohup sh xxx.sh & else echo "process is r... 阅读全文
posted @ 2019-08-22 22:38 ahuo 阅读(462) 评论(0) 推荐(0) 编辑