1.test
fi
1.1 test 数值比较
n1 -eq n2 # n1是否等于n2
n1 -ge n2 # n1是否大于或等于n2
n1 -gt n2 # n1是否大于n2
n1 -le n2 # n1是否小于或等于n2
n1 -lt n2 # n1是否小于n2
n1 -ne n2 # n1是否不等于n2
[root@db-grassroots-61-001 script]# cat 3
#!/bin/bash
val1=10
val2=11
if [ $val1 -gt 5 ]
then
fi
then
else
fi
1.2 test 字符串比较
str1 = str2
str1 != str2
str1 < str2
str1 > str2
-n str1
-z str1
发表评论
要发表评论,您必须先登录。