if判断文件、目录属性 [-f file]判断是否是普通文件,且存在 [-d file]判断是否是目录,且存在 [-e file]判断文件或目录是否存在 [-r file]判断文件是否可读 [-w file]判断文件是否可写 [-x file]判断文件是否可执行
1.判断数之间的大小
#!/bin/bash #auto if test #by zgh 2019 NUM1=100 NUM2=200 if [ $NUME1 > $NUM2 ] then echo "This $NUM1 greate $NUM2 !" else echo "This $NUM1 little $NUM2 !" fi
2.判断一个目录是否存在
#!/bin/bash #auto if test1 #by authors zgh 2019 DIR=/tmp/20191126 if [ ! -d $DIR ] then mkdir -p $DIR echo -e "