用途
对表达式进行判断比较
语法
test[expression]或者[ [expression] ]
描述
-b file file是块设备文件
-e file file存在
-r file file是可读的
-c file file是字符设备文件
-f file file为一般文件
-w file file是可写的
-d file file是目录
-L file file是符号连接
-x file file是可执行的
-z string 假如 string长度为零,则为真 [ -z "$myvar" ]
-n string 假如 string长度非零,则为真 [ -n "$myvar" ]
举例