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

判断LINUX进程是否存在

时间:2014-10-21 20:00:40      阅读:288      评论:0      收藏:0      [点我收藏+]

标签:style   sp   ef   linux   line   as   print   height   oo   

###################################################

#!/bin/bash

#判断进程是否存在,如果不存在就启动它

PIDS=`ps -ef |grep myprocess |grep -v grep | awk ‘{print $2}‘`

if [ "$PIDS" != "" ]; then

echo "myprocess is runing!"

else

cd /root/

./myprocess

#运行进程

fi

###################################################

#!/bin/bash

#判断进程是否存在,如果不存在就启动它如果存在就重启它

PIDS=`ps -ef |grep myprocess |grep -v grep | awk ‘{print $2}‘`

if [ "$PIDS" != "" ]; then

kill -9 $PIDS

#先关闭进程,在运行此进程

cd /root/myprocess

sudo ./myprocess

#重新运行进程

else

cd /root/myprocess

sudo ./myprocess

#运行进程

fi


判断LINUX进程是否存在

标签:style   sp   ef   linux   line   as   print   height   oo   

原文地址:http://my.oschina.net/u/225373/blog/335897

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