-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
更多關于云服務器,域名注冊,虛擬主機的問題,請訪問西部數(shù)碼官網:youyuetrip.com