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

Linux学习记录(二)----if

时间:2015-10-22 18:54:40      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:

常用格式

格式一:

if 条件; then

    语句

fi

格式二:

if 条件; then

    语句

else

    语句

fi

格式三:

if 条件; then

    语句

elif 条件; then

    语句

fi

格式四:

if 条件; then

    语句

elif 条件; then

    语句

else

    语句

fi

使用示例

(1)判断字符串相等

if [ "foo" = "foo" ]; then
   echo expression evaluated as true
else
    echo expression evaluated as false
 fi

result  : expression evaluated as true

(2)

---------------------初次乍到,待补充------

Linux学习记录(二)----if

标签:

原文地址:http://www.cnblogs.com/xinqi/p/4901687.html

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