当前位置: > shell编程 >

shell脚本判断进程是否存在,shell脚本重新启动程序

时间:2014-10-15 01:13来源:linux.it.net.cn 作者:it

例子,shell脚本判断进程是否存在。
 

复制代码代码示例:

#!/bin/bash
# filename: check
# program : 判断进行是否存在,并重新启动
 

function check(){
    count=`ps -ef |grep $1 |grep -v "grep" |wc -l`
    #echo $count
    if [ 0 == $count ];then
        nohup  python  /runscript/working/$1 &
    fi
}

#添加执行权限
# chmod +x check

#调用脚本
./check behaviors.py


(责任编辑:IT)
------分隔线----------------------------
栏目列表
推荐内容