如何计算以某个单词开头的文本文件中的行数?
我不想用sed
then wc -l
。有更好的解决方案吗?
只需 grep 你的话,然后使用 wc -l 来计算行数......就像这样
grep '^your_word' /path/to/file | wc -l
尝试这个:-
awk '/^yourwordtofind/{a++}END{print a}' file
grep -c "pattern" <filename>
例如:如果要more
在文件中搜索模式test.txt
,那么下面是命令:
grep -c "more" test.txt
cat <filename> | grep <word> | wc -l