json 파일(exclude.json.gz)만 grep하는 방법은 무엇입니까?

json 파일(exclude.json.gz)만 grep하는 방법은 무엇입니까?

나는 이것을 시도했다

 grep -r --include=\*.json 'ticr_calculated_3' ./

파일은 있는데 아무것도 없네요

tick_calculated_3_2020-05-27T11-52-59.json
tick_calculated_3_2020-05-27T11-55-08.json
tick_calculated_3_2020-05-27T11-57-30.json
tick_calculated_3_2020-05-27T11-59-59.json

왜?

답변1

파일 내용은 검색 .json하지만 .json.gz파일 내용은 검색하지 않으려면 다음을 수행하세요.

$ grep 'pattern' *.json

관련 정보