여러 로그 파일에 이와 같은 줄이 있습니다.
파일 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