用shell script自动拉起进程

        简单东西, 最近要用, 搞一下:

#!/bin/bash  
while true  
do  
	procnum=`ps -ef | grep "test" | grep -v grep | wc -l`  
	if [ $procnum -eq 0 ]; then  
		nohup /home/ubuntu/taoge/go/test &  
	fi  
	sleep 10
done

         自测OK.

         没什么好说的。

 

你可能感兴趣的:(S1:,Shell,s2:,Linux杂项)