Shell脚本中使用test测试命令测试数值
Posted 旅行者3468号
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Shell脚本中使用test测试命令测试数值相关的知识,希望对你有一定的参考价值。
test 101 -le 99
101是否小于或等于99
类似的特殊符号还有
-eq 【判断是否相等】
-ge 【判断是否大于或等于】
-lt 【判断是否小于】
-ne 【判断是否不等于】
可以使用命令“[]”代替test命令来作为逻辑表达式
#! /bin/bash echo if 101 smaller than 100 if test 101 -le 100 then echo true else echo false fi echo if 101 bigger than 100 if [ 101 -gt 100 ] then echo true else echo false fi
1 [[email protected] Desktop]# ./count.sh 2 if 101 smaller than 100 3 false 4 if 101 bigger than 100 5 true
以上是关于Shell脚本中使用test测试命令测试数值的主要内容,如果未能解决你的问题,请参考以下文章