如何仅 grep json 文件(exclude.json.gz)?

如何仅 grep json 文件(exclude.json.gz)?

我试过这个

 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

相关内容