Linux操作系统---在指定文件类型中查找指定的字符串
命令:find dir -name "file_pattern" xargs grep -nir "string_need_find"
example :find ./ -name "*.h" | xargs grep -nir "ENABLE_AEC_LEAKTHROUGH"
2022-07-25 13:01:33
命令:find dir -name "file_pattern" xargs grep -nir "string_need_find"
example :find ./ -name "*.h" | xargs grep -nir "ENABLE_AEC_LEAKTHROUGH"