linux 系统中如何统计文件列数

1、测试数据

[root@centos79 test]# cat a.txt
e r w i
s g n c
w d h x

 

2、awk

[root@centos79 test]# cat a.txt
e r w i
s g n c
w d h x
[root@centos79 test]# awk '{print NF}' a.txt
4
4
4
[root@centos79 test]# awk 'END{print NF}' a.txt
4

 

3、grep + wc -l

[root@centos79 test]# cat a.txt
e r w i
s g n c
w d h x
[root@centos79 test]# head -n 1 a.txt | grep -o " " | sed "1i xx" | wc -l
4

 

4、tr + wc -l

[root@centos79 test]# cat a.txt
e r w i
s g n c
w d h x
[root@centos79 test]# head -n 1 a.txt | tr " " "\n" | wc -l
4

 

上一篇:骂脏话,在人类的发展过程中有什么意义?(如何正确的讲脏话)


下一篇:wait()系统调用分别演示在父子进程