判断进程是否存在的shell代码

发布时间:2020-08-01编辑:脚本学堂
判断进程是否存在的shell代码

判断进程是否存在,使用命令ps、grep、sedlinuxjishu/13830.html target=_blank class=infotextkey>awk。

代码chk_ps.sh:

复制代码 代码如下:

#!/bin/bash
pid=`ps aux|grep -v grep|grep -v "test.sh"|grep $1|sed -n '1P' | awk '{print $2}'`
if [ -z $pid ];then
   echo   "there isn't this process!"
else
   echo $pid
fi