码迷,mamicode.com
首页 > 系统相关 > 详细

Shell 判断进程是否存在

时间:2020-06-11 19:50:58      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:print   echo   启动   提醒   grep -v   进程   yellow   shel   运行   

# 判断是否启动了Redis,仅作为提醒
REDIS_PIDS=$(ps -ef | grep redis | grep -v grep | awk ‘{print $2}‘)
if [ "$REDIS_PIDS" = "" ]; then
    Echo_Yellow "Redis is not runing."
    #运行进程
fi

Shell 判断进程是否存在

标签:print   echo   启动   提醒   grep -v   进程   yellow   shel   运行   

原文地址:https://www.cnblogs.com/jiqing9006/p/13095093.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!