TEST

来源:互联网 发布:淘宝做代理发货怎么办 编辑:程序博客网 时间:2024/05/29 03:55

TEST

    #!/bin/sh    num=`/bin/ps -ef|grep http|grep -v grep|wc -l`    if [ $num -ne 4 ]    then    /application/apache/bin/apachectl -k start &&    echo "Apache is already started!"    else    echo "Apache is running!"    fi



0 0