怎样使用shell来判断nginx是否存在

怎样使用shell来判断nginx是否存在_第1张图片

if ps -ef | grep "nginx"|egrep -v grep > /dev/null

then

         echo ok!

else

      systemctl start nginx   //添加自己的启动命令同样也适用于其他的服务

fi

你可能感兴趣的:(怎样使用shell来判断nginx是否存在)