根据模式打印搜索后的计数和行

根据模式打印搜索后的计数和行

我在多个日志文件中有这样的行

文件1:

Line 203:Caused by :arithmatic overflow exception

Line 204:at com.abc.java

文件2:

Line 105:Caused by : ???String out of bound exception

Line 206 :at com.def.java

有很多文件包含上述模式。如何计算所有这些文件中第 203 行 + 第 204 行组合的出现次数

答案1

明显的方法是:

grep -l 'Line 203:' * | xargs grep 'Line 204:' | wc -l

相关内容