shell 等待某个进程的加载

有时候一些进程是需要依赖另外一个进程的服务的。

#!/bin/bash

waite(){
	if [ $# -eq 1 ]
	then
	    while(true);do
		sleep 1s 
		    pid=`ps -ef | grep "$1" | grep -v grep | awk '{print $2}'`
			if [ "$pid" != "" ]
			then
				break
			fi
	    done
	else
	    echo "The input parameter must be 1"
	fi
}

echo "begin wait for process startup"
# 执行wait方法查询是否有myapp.py的进程存在 waite myapp.py echo "process started"

 

 

相关文章

Centos系统之Shell编程基础知识
从Export理解Shell环境和变量生存期
linux shell数组变量、类型及规则
Centos编程Shell基本工作原理方案
Centos操作系统编程之Shell 问答录
rsync-linux备份脚本