001、
[root@PC1 test]# ls [root@PC1 test]# touch a.txt ## 测试文件 [root@PC1 test]# seq 6 > b.txt ## 测试文件 [root@PC1 test]# cat a.txt [root@PC1 test]# cat b.txt 1 2 3 4 5 6 [root@PC1 test]# [ -s a.txt ] ## 如果文件不为空,则返回真,否则返回假 [root@PC1 test]# echo $? ## a.txt为空,返回假 1 [root@PC1 test]# [ -s b.txt ] ## b.txt不为空, 返回真 [root@PC1 test]# echo $? 0 [root@PC1 test]# echo xxx > a.txt [root@PC1 test]# [ -s a.txt ] [root@PC1 test]# echo $? 0
标签:文件,##,PC1,echo,为空,linux,test,txt,root From: https://www.cnblogs.com/liujiaxin2018/p/16967622.html