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
标签:test4,linux,cat,centos7,awk,列数,test,txt,root 来源: https://www.cnblogs.com/liujiaxin2018/p/16144551.html