标签:
和 test 命令等价,用户布尔判断,比如:
1 a=‘abc‘ 2 if [ $a == ‘abc‘ ] 3 then 4 echo "yes" 5 else 6 echo "no" 7 fi
等价于
1 if test $a == ‘abc‘ 2 then 3 echo "yes" 4 else 5 echo "no" 6 fi
使用[]的时候要注意:
1. [] 左右括号要各留一个空格,否则会报错
2. 如果 == 左边的值为空,会导致命令出错,为了防止这种情况,一般在 == 左右各加一个额外的字符串,比如:
if [ ${a}x == abcx ]
另外,还要注意单括号和双括号的区别:
小括号多用于算数运算符,用于赋值操作的时候,功能跟let命令相似,原文参考这里
let a=5 ((a=10)) echo $a, $b
((a=$a+7)) # Add 7 to a
((a = a + 7)) # Add 7 to a. Identical to the previous command.
((a += 7)) # Add 7 to a. Identical to the previous command.
((a = RANDOM % 10 + 1)) # Choose a random number from 1 to 10.
# % is modulus, as in C.
双括号左边加 $ 符号,用于替换结果,比如:
echo $((a>10))
单个()用于在新的 subshell 中执行相应的命令,比如:
1 (cd ../../)
需要注意的是,这段命令执行完成之后,并不会改变当前目录
参考资料:
http://mywiki.wooledge.org/ArithmeticExpression
http://stackoverflow.com/questions/2188199/how-to-use-double-or-single-bracket-parentheses-curly-braces
标签:
原文地址:http://www.cnblogs.com/cbffr/p/4758313.html