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

shell编程中的条件判断(shell 05)

时间:2016-10-30 01:10:51      阅读:287      评论:0      收藏:0      [点我收藏+]

标签:sans   out   星期六   mic   localhost   中括号   command   数值   class   

shell编程中的条件判断
条件
if-then
case

if-then
单条件
if command
then
commands
fi
当command返回码为0时 条件成立

if.sh

#! /bin/bash

if date
then
        echo "command exec"
fi

if date123
then
        echo "command exec1"
fi

echo "out if"

[root@localhost110 sh]# ./if.sh
2016年 10月 29日 星期六 10:39:18 EDT
command exec
./if.sh: line 8: date123: command not found
out if

全覆盖

if command
then
  commands
else
  commands
fi

if.sh

#! /bin/bash
if date1
then
        echo "command"
        echo "ok"
else
        echo "commond1"
        echo "fail"
fi

[root@localhost110 sh]# ./if.sh
./if.sh: line 2: date1: command not found
commond1
fail

条件嵌套

if command1
then
  commands
  if command2
  then
    commands
  fi
  commands
fi

多条件
if command1
then
  commands
elif command2
then
  commands
else
  commands
fi

test命令:
第一种形式
if test condition
then
  commands
fi
第二种形式
中括号 []:
if [ condition ]
then
commands
fi
复合条件判断
[ condition1 ] && [ condition2 ]
[ condition1 ] || [ condition2 ]

三类条件
  数值比较
  字符串比较
  文件比较
if.sh

echo plese input a num

read num

if [ $num -gt 10 ]
then
        echo "the num>10"
fi

if [ $num -lt 10 ]  && [ $num -gt 5 ]
then
        echo "the 5<num<10"
fi

[root@localhost110 sh]# ./if.sh plese input a num 11 the num>10

 

待续

shell编程中的条件判断(shell 05)

标签:sans   out   星期六   mic   localhost   中括号   command   数值   class   

原文地址:http://www.cnblogs.com/HKUI/p/6012144.html

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