001、
(base) [root@PC1 test]# seq 3 > a.txt (base) [root@PC1 test]# cat a.txt ## 测试数据 1 2 3 (base) [root@PC1 test]# echo >> a.txt ## 末尾追加一个空行 (base) [root@PC1 test]# cat a.txt 1 2 3 (base) [root@PC1 test]# echo >> a.txt (base) [root@PC1 test]# cat a.txt 1 2 3 (base) [root@PC1 test]#
标签:空行,PC1,cat,base,linux,test,txt,root,末尾 From: https://www.cnblogs.com/liujiaxin2018/p/16718144.html