变量一定要用 "" 包起来,否则容易出问问题 = 和 == 都能用,但是有差异 == 支持模糊匹配
主要参数:
-z 长度为: 0 返回 true -n 长度不为: 0 返回 true
#!/bin/bash
str1=
str2=""
str3="1234"
if [ -z "$str1" ]; then
echo '1 -z: ' $str1
fi
if [ -z "$str2" ]; then
echo '2 -z: ' $str2
fi
if [ -n $"str3" ]; then
echo '3 -n' $str3
fi
结果:
1 -z: 2 -z: 3 -n 1234
格式:string1 = string2
#!/bin/bash
str='test_val'
if [ "$str" = "one" ]; then
echo $str
fi
结果:
1: test_val 2: test_val
下面这个错,需要用 [[ 包起来 test.sh: line 107: [: main: integer expression expected
#!/bin/bash
if [[ "$test" != "g" ]]; then
echo '1'
fi
-eq
只支持整数的比较,这样写不报错,注意是不报错,但是结果不会相等。
#!/bin/bash
test1='abc'
test2='efg'
testNum1=123
testNum2=123
if [[ $test1 -eq 'efg' ]]; then
echo 1
fi
if [[ $test2 -eq 'efg' ]]; then
echo 2
fi
if [[ $testNum1 -eq $testNum2 ]]; then
echo 3
fi
结果:
1 2 3
所以要格外注意。
使用字符串比较一定要=
或==
,不可以使用-eq