#/bin/bash

count=`ps -ef | grep miaomu3_3.py | grep -v grep | wc -l`

if [ ${count} == 1 ]; then

    echo "服务进行中"

else

    echo "服务已停止"

fi