系统运维
-eq 是否等于
-ne 是否不等于
-gt 是否大于
-lt 是否小于
-le 是否等于或小于
-ge 是否等于或大于
等于(equal) 较大的(greater than) less-than(小于)
[root@master1-192-168-117-18 ~]# [ 10 -gt 20 ]
[root@master1-192-168-117-18 ~]# echo $?
1
[root@master1-192-168-117-18 ~]# [ 40 -gt 20 ]
[root@master1-192-168-117-18 ~]# echo $?
0
[root@master1-192-168-117-18 ~]# FreeMem=free -h | grep Mem: | awk \'{print $4}\'
[root@master1-192-168-117-18 ~]# echo $FreeMem
5.0G
操作符 作用
= 比较字符串内容是否相同
!= 比较字符串内容是否不同
-z 判断字符串内容是否为空
[root@master1-192-168-117-18 ~]# [ -z $String ]
[root@master1-192-168-117-18 ~]# echo $?
0
[root@master1-192-168-117-18 ~]# [ /etc/hosts = /etc/profile ]
[root@master1-192-168-117-18 ~]# echo $?
1
[root@master1-192-168-117-18 ~]# [ $LANG != "en.US" ] && echo "Not en.US"
Not en.US
本文题目:Shell测试语句:整数比较运算符
路径分享:http://scyingshan.cn/article/cpddcc.html