[ condition ](注意condition前后要有空格)
注意:条件非空即为true,[ atguigu ]返回true,[] 返回false。
= 字符串比较
-lt 小于(less than) -le 小于等于(less equal)
-eq 等于(equal) -gt 大于(greater than)
-ge 大于等于(greater equal) -ne 不等于(Not equal)
-r 有读的权限(read) -w 有写的权限(write)
-x 有执行的权限(execute)
-f 文件存在并且是一个常规的文件(file)
-e 文件存在(existence) -d 文件存在并是一个目录(directory)
[[email protected] sh]# [ 23 -ge 22 ] [[email protected] sh]# echo $? 0
[[email protected] sh]# [ -w helloworld.sh ] [[email protected] sh]# echo $? 0
[[email protected] sh]# [ -e /home/atguigu/cls.txt ] [[email protected] sh]# echo $? 1
[[email protected] sh]# [ condition ] && echo OK || echo notok OK [[email protected] sh]# [ condition ] && [ ] || echo notok notok