Shell-03-表达式和运算符




表达式和运算符

条件表达式语句

[ 1 -eq 1 ]

[[ 1 -eq 1 ]]

test 1 -eq 1  等同于  [  1 -eq 1 ]

[root@satest_192-168-3-121 shell]# [ 1 -eq 1 ]
[root@satest_192-168-3-121 shell]# echo $?
0
[root@satest_192-168-3-121 shell]#
[root@satest_192-168-3-121 shell]# [[ 1 -eq 1 ]]
[root@satest_192-168-3-121 shell]# echo $?
0
[root@satest_192-168-3-121 shell]#
[root@satest_192-168-3-121 shell]# test 1 -eq 1
[root@satest_192-168-3-121 shell]# echo $?
0
[root@satest_192-168-3-121 shell]#


整数比较

Shell-03-表达式和运算符



字符串比较

Shell-03-表达式和运算符

注意:
使用 -z 或者 -n 判断字符串长度时,需要加双引号
使用 [ ... ] 时 需要给变量值加上双引号,不然判断会出错
使用 [[ ... ]] 时,则不需要

Shell-03-表达式和运算符



文件测试

Shell-03-表达式和运算符



布尔运算符

Shell-03-表达式和运算符



逻辑判断符

Shell-03-表达式和运算符



整数运算

Shell-03-表达式和运算符



其他运算工具

Shell-03-表达式和运算符


shell 不支持浮点数比较,可以借助bc来完成需求

Shell-03-表达式和运算符

Shell-03-表达式和运算符




shell括号用途总结

Shell-03-表达式和运算符


上一篇:Saltstack自动化操作记录(2)-配置使用


下一篇:中国人工智能学会通讯——构建强健的人工智能:原因及方式 4. 检测异常