码迷,mamicode.com
首页 > 系统相关 > 详细

判断进程存不存在

时间:2017-12-18 12:00:09      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:read   返回   time   class   stop   存在   second   bin   done   

#!/bin/bash
#

#调用关闭jboss进程脚本
stopMethodServer.sh

#打印出当前的jboss进程:grep jboss查询的jboss进程,grep -v "grep" 去掉grep进程
jmsThread=`ps -ef | grep gdms | grep jboss | grep -v "grep"`
echo $jmsThread

#查询jboss进程个数:wc -l 返回行数
count=`ps -ef | grep gdms | grep jboss | grep -v "grep" | wc -l`
echo $count

sec=7
#开始一个循环,以判断进程是否关闭

for var in 1 2
do
if [ $count -gt 0 ]; then
#若进程还未关闭,则脚本sleep几秒
echo sleep $sec second the $var time, the JMS thread is still alive
sleep $sec
else
#若进程已经关闭,则跳出循环
echo "break"
break
fi
done

#if [ $count -eq 0 ]; then
# echo "nohup startMethodServer.sh &"
# nohup startMethodServer.sh &
#else
# echo "It‘s better to check the thread!!!"
#fi

#调用启动脚本
nohup startMethodServer.sh &

判断进程存不存在

标签:read   返回   time   class   stop   存在   second   bin   done   

原文地址:http://www.cnblogs.com/guxiaobei/p/8056281.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!