2020年10月23日
摘要: #!/bin/bash #判断进程是否存在,如果不存在就启动它 PIDS=`ps -ef |grep myprocess |grep -v grep | awk '{print $2}'` if [ "$PIDS" != "" ]; then echo "myprocess is runing!" 阅读全文
posted @ 2020-10-23 11:37 裸睡的猪 阅读(3705) 评论(0) 推荐(0) 编辑