shellLinux shell if 语句详解

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shellLinux shell if 语句详解相关的知识,希望对你有一定的参考价值。

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

以上是关于shellLinux shell if 语句详解的主要内容,如果未能解决你的问题,请参考以下文章

shellLinux shell 位置变量详解

shellLinux shell for 循环详解

shellLinux shell 之break和continue详解

shellLinux shell 之 打印99乘法表详解

shellLinux shell之while循环

Shell if else语句(详解版)