각 줄 끝의 특정 단어를 모두 세어보세요.

각 줄 끝의 특정 단어를 모두 세어보세요.

파일에서 ".wsp"로 끝나는 모든 단어를 계산하는 방법

more file
/application_1532998892988_0207/driver/BlockManager/memory/remainingOffHeapMem_MB.wsp
/spark/application_1532998892988_0207/driver/BlockManager/memory/memUsed_MB.wsp

동시에 나는 이 문법을 만들었습니다.

 sed s'/\// / g' file   | awk '{print $NF}' | grep -o '.wsp' | wc -l

하지만 이 구문은 그다지 우아하지 않습니다.

답변1

이 시도,

 grep -c '\.wsp$' file
  • -c 입력 파일당 일치하는 줄 수

관련 정보