跳至主要內容

7.4 嵌套 if/then 条件测试

LinuxStoryLinuxBash约 128 字小于 1 分钟

7.4 嵌套 if/then 条件测试

可以嵌套 if/then 条件测试结构。嵌套的结果等价于使用 &&open in new window 复合比较运算符。

a=3

if [ "$a" -gt 0 ]
then
  if [ "$a" -lt 5 ]
  then
    echo "The value of \"a\" lies somewhere between 0 and 5."
  fi
fi

# 和下面的结果相同

if [ "$a" -gt 0 ] && [ "$a" -lt 5 ]
then
  echo "The value of \"a\" lies somewhere between 0 and 5."
fi

样例 37-4open in new window样例 17-11open in new window 中展示了嵌套 if/then 条件测试结构。