#!/bin/bash while true ;do num=`ps -ef|grep Cold_server|grep -v grep|wc -l` if [ $num -lt 1 ];then run.sh fi sleep 10 done