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

shell的if嵌套

时间:2018-02-09 22:26:10      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:[]   shel   空格   result   awk   grep   表达   class   delete   

shell脚本编写中,if是可以嵌套的, 
注意,if条件表达式[]中的空格,以及后面的then就行了 
if条件表达式后面的分号“;”可有可无,不影响。

代码如下

myFile=‘ctr_result.txt‘
if [ -e "$myFile" ]; then
        rm $myFile
        result_code=$?
        if [ "$result_code" -ne 0 ]; then
                echo "[ERROR] when delete $myFile"
                exit $result_code
        fi
        echo "$myFile exists, we delete it"
fi


  
 

  

 

实际shell 脚本


if [ $packetanal_ver != ‘yechang‘ ];then
     packetpid=`ps aux|grep  packetAnal|grep -v "grep"|awk ‘{print $2}‘`

     if [ "$packetpid" ];then
          kill -9 $packetpid
          echo "old packetAnal is killed"
     fi
fi

  

shell的if嵌套

标签:[]   shel   空格   result   awk   grep   表达   class   delete   

原文地址:https://www.cnblogs.com/weifeng1463/p/8436526.html

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