001、cat + wc -l
[root@PC1 test]# ls a.txt [root@PC1 test]# cat a.txt ## 测试文件 1 2 3 4 5 6 7 8 9 10 [root@PC1 test]# cat a.txt | wc -l ## 输出文件的行数 10
002、sed -n "$="
[root@PC1 test]# ls a.txt [root@PC1 test]# cat a.txt 1 2 3 4 5 6 7 8 9 10 [root@PC1 test]# sed -n "$=" a.txt ## 统计文件的行数,不显示文件名 10
003、wc -l <file
[root@PC1 test]# ls a.txt [root@PC1 test]# cat a.txt 1 2 3 4 5 6 7 8 9 10 [root@PC1 test]# wc -l <a.txt ## 输出文件的行数 10
标签:10,文件名,PC1,cat,行数,linux,test,txt,root From: https://www.cnblogs.com/liujiaxin2018/p/16967749.html