[Linux]搜索文件是否包含指定内容并返回文件名

在Linux系统中,find和grep都是很强大的命令,可以做很多很多事情,今天刚好有人问“如何查找哪些文件包含了特定字符串,并显示这些文件的名称”。

第一种方法:使用grep,假设搜索所有的.cpp文件是否包含‘open‘字符串,如果包含了,则显示该文件,命令如下:

grep -rl ‘open‘ . --include=*.cpp

则执行结果如下:

./test/testall/file.cpp
./test/testall/shell_test.cpp
./test/daemontest/main.cpp

但是有时候只显示文件名,也不知道出现的地方到底是什么样子的,如果还有顺带查看一下那一行的内容,可以用如下命令:

grep -rn ‘open‘ . --include=*.cpp

则,执行结果如下:

./test/testall/file.cpp:270:    FILE *file = fopen(file_name.c_str(),"w");
./test/testall/file.cpp:273:            printf("Can‘t open the file\n");
./test/testall/shell_test.cpp:29:       FILE *file = fopen(file_name, "r");
./test/daemontest/main.cpp:53:  openlog("daemontest",LOG_PID,LOG_USER);

显示了文件名,行号以及该行内容。

第二种方法:使用find命令+grep

假设搜索所有的.cpp文件是否包含‘open‘字符串,如果包含了,则显示该文件,命令如下:

find -name ‘*.cpp‘ -exec grep -l ‘open‘ {} \;

则结果如下:

./test/testall/file.cpp
./test/testall/shell_test.cpp
./test/daemontest/main.cpp




郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。