带来一篇shell剧本判别Apache历程是不是存在
如果您觉得本篇CentOSLinux教程讲得好,请记得点击右边漂浮的分享程序,把好文章分享给你的小伙伴们!写一个剧本反省Apache历程是不是存在,若不存在则显现不存在,若存在则显现历程个数,当不即是10个时用白色字体关照***,并扣问***是不是启动Apache办事。#!/bin/bash
#echo"$(servicehttpdstatus)"
PIDNUM=$(pgrephttpd|wc-l)
if[[$PIDNUM-eq0]];then
echo"Apacheisstopped."
read-p"DoyouwanttostartApache?(y/n)"START
if[[$START==y]];then
echo"$(servicehttpdstart)"
else
echo"YourefusedtostartApache."
fi
else
echo"Apacheisrunning.Proccessnumberis$PIDNUM."
if[[$PIDNUM!=10]];then
echo-e"