Linux shell脚本检查进程PID的代码

发布时间:2020-11-26编辑:脚本学堂
分享一例检查进程pid的linux shell脚本,学习下ps命令、grep命令、awk命令的用法,需要的朋友参考下。

例子,shell/ target=_blank class=infotextkey>shell脚本检查进程PID。
 

复制代码 代码示例:
#
# check the pid of such program
#
checkPid() {
if [ -z "`ps x grep $1 grep -v grep grep -v $0 linuxjishu/13830.html target=_blank class=infotextkey>awk '{print $1}'`" ]
then
echo "The $1 program cant run well."
fi
}