查找文件中字符的时候使用grep 查找指定类型的文件的时候 grep -rin --include=*.{c,cpp} “字符” [path] 排除一些指定类型的文件查找字符串 grep -rin --exclude=*.{c,cpp} “字符” [path] 在多个文件之中匹配字符 grep test testfile retestfile 待续更新。。。。。