码迷,mamicode.com
首页 > 系统相关 > 详细

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

时间:2014-11-25 09:20:46      阅读:252      评论:0      收藏:0      [点我收藏+]

标签:linux   find   搜索字符串   

在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




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

标签:linux   find   搜索字符串   

原文地址:http://blog.csdn.net/zhanghaiyang9999/article/details/41456405

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!