[linux shell]if -else 例子

Posted

tags:

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

#ifelse_exam.sh脚本用于检查输入的字符串是否是一个当前目录
#!/bin/bash

#测试用户输入是否为空,然后判断当前目录是否存在该文件

if [ "$1" ]
then 
        echo "What you input is not null"
        if [ -e "$1" ]
        then 
                echo "The file $1 is existence!"
        else
                echo "The file $1 is not existence!"
        fi
else 
        echo "What you input is null!"
fi


以上是关于[linux shell]if -else 例子的主要内容,如果未能解决你的问题,请参考以下文章

Linux Bash Shell编程快速入门

Linux Shell:Shell循环语句

shell脚本while用法

每天三分钟搞定linux shell脚本10 字符串相关的if判断

linux shell 变量子串

shell脚本中执行python脚本并接收其返回值的例子