반응형
Count grep results: wc command
(grep 결과의 개수 세기: wc 명령어)
grep의 결과가 너무 많아서 카운트하기 어려울 때
wc -l 옵션을 사용하면 간단히 grep 결과의 전체 라인 행 수를 셀 수 있습니다.
ex) grep -r "mem" ./ | wc -l
wc 명령어 옵션
-c 지정 파일의 byte
-m 지정 파일의 문자 개수
-l 지정 파일의 총 행 개수
-w 지정 파일의 총 단어 개수
-L 지정 파일의 모든 행 중, 가장 길이가 긴 행의 문자 개수
(When there are too many grep results to count,
The wc -l option allows you to simply count the total number of line rows of grep results.
ex) grep -r "mem" ./ | wc -l
wc Command Options
-c bytes in the specified file
Number of characters in the -m specified file
Total number of rows in -l specified file
-w Total number of words in the specified file
-L The number of characters in the longest row of all rows in the specified file)
반응형