本文介绍了计数以某个单词开头的行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何计算文本文件中以某个单词开头的行数?
How to count the number of lines in a text file starting with a certain word?
我不想使用 sed
,然后是 wc -l 。有更好的解决方案吗?
I do not want to use sed
and then wc -l
. Any better solution?
推荐答案
请尝试以下操作:-
awk '/^yourwordtofind/{a++}END{print a}' file
这篇关于计数以某个单词开头的行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!