(base) [root@PC1 test4]# cat a.txt (base) [root@PC1 test4]#if[ -s a.txt ]; then echo"no empty"; fi ## 判断文件是否不为空(base) [root@PC1 test4]# echo"xxx">a.txt (base) [root@PC1 test4]#if[ -s a.txt ]; then echo"no empty"; fi no empty 005、判断目录是否为...