linux awk命令统计行数和列数

2022/4/15 7:12:45

本文主要是介绍linux awk命令统计行数和列数,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 

1、测试数据

[root@centos7 test4]# ls
test.txt
[root@centos7 test4]# cat test.txt
d j k j
x m y e
s g j i
x v b d
z c e t

 

2、统计行数和列数

[root@centos7 test4]# ls
test.txt
[root@centos7 test4]# cat test.txt
d j k j
x m y e
s g j i
x v b d
z c e t
[root@centos7 test4]# awk '{i++} END {print FILENAME, i, NF}' test.txt  ## 5行4列
test.txt 5 4

 



这篇关于linux awk命令统计行数和列数的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程