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

【shell】Linux shell if 语句详解

时间:2018-03-22 20:33:29      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:linux   shell   运维   自动化运维   

if语句

1.1 if语句解释

if 是判断语句,if语句的作用跟 [ ] 差不多,一般判断比较多或者执行的语句比较多的话,那么就会使用if

1.2 if 格式

第一种格式

if [ 判断条件 ];then
    内容
else
    内容
fi

第二种格式,多重判断

if [ 判断条件 ];then
    内容
elif [ 判断条件 ];then
    内容
else
    内容
fi

1.3 注意事项

if 语句后面的 [ ] 两边必须有空格

1.4 if例子

1.if判断
判断/root/a.txt是否存在,如果存在,echo 0 ,如果不存在,echo1

#!/bin/bash -
if [ -f /root/a.txt ];then
        echo 0
else
        echo 1
fi

2.if...elif...else...
判断/root/a.txt 是否 存在,如果存在,则echo a.txt,判断/root/b.txt是否存在,如果存在,则 echo b.txt,如果a.txt 和 b.txt 都不存在,则输出error

#!/bin/bash -
if [ -f /root/a.txt ];then
        echo "a.txt"
elif [ -f /root/b.txt ];then
        echo "b.txt"
else
        echo "error"
fi

【shell】Linux shell if 语句详解

标签:linux   shell   运维   自动化运维   

原文地址:http://blog.51cto.com/xiaowangzai/2090020

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