码迷,mamicode.com
首页 > 其他好文 > 详细

《shell条件测试语句,字符串测试apache是否开启》

时间:2014-06-02 11:47:20      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:c   style   a   tar   http   color   

  

还得我想了10分钟才明白”!=“和"-n"的用法区别,做个笔记捋一捋

 

第一种方法:测试apache是否开启?字符串测试

#!/bin/bash

web=`/usr/bin/pgrep httpd`

if [ -n "$web" ];  //$web返回值是否为空

then        

  echo "httpd is running"

else        

  /etc/init.d/httpd start

fi

第二种:

#!/bin/bash

web=`/usr/bin/pgrep httpd`

if [ "$web" !=“” ];      //$web返回值是否等于空

then        

  echo "httpd is running"

else        

  /etc/init.d/httpd start

fi

《shell条件测试语句,字符串测试apache是否开启》,布布扣,bubuko.com

《shell条件测试语句,字符串测试apache是否开启》

标签:c   style   a   tar   http   color   

原文地址:http://www.cnblogs.com/linux-super-meng/p/3763166.html

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