#!/bin/bash PIDsum=`ps -ef | grep "nginx" | grep -v "grep" | wc -l` if [ $PIDsum -eq 0 ] then service nginx start fi