运算符描述示例
!非关系,条件结果取反[ ! 1 -eq 2 ]为 true
-a和关系,在[]表达式中使用[ 1 -eq 1 -a 2 -eq 2 ]为 true
-o或关系,在[]表达式中使用[ 1 -eq 1 -o 2 -eq 1 ]为 true