标签:print 字符串 shel int gre 比较 测试 大于 master
-eq 是否等于等于(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
标签:print 字符串 shel int gre 比较 测试 大于 master
原文地址:https://blog.51cto.com/12400136/2460167