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

[linux shell]if -else 例子

时间:2016-10-15 22:46:29      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:字符串   file   null   用户   

#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 例子

标签:字符串   file   null   用户   

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

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