当前位置:首页 > 操作系统 > Linux

[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

原文:http://11468437.blog.51cto.com/11458437/1862241


【说明】本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:254677821)!

相关教程推荐

其他课程推荐