当前位置: 技术问答>linux和unix
查找文件包含文字。包括子目录中的文件
来源: 互联网 发布时间:2014-10-22
本文导语: 目录结构如下: . .. aa/ 111.c 222.c 333.c 查找本目录和子目录中包含"AAA"的字符串 find . -name "*.*"|grep aaa 这条命令不行 |find . -name "*.*" |xargs grep AAA ================================================================= ** The si...
目录结构如下:
.
..
aa/
111.c
222.c
333.c
查找本目录和子目录中包含"AAA"的字符串
find . -name "*.*"|grep aaa
这条命令不行
.
..
aa/
111.c
222.c
333.c
查找本目录和子目录中包含"AAA"的字符串
find . -name "*.*"|grep aaa
这条命令不行
|
find . -name "*.*" |xargs grep AAA ================================================================= ** The significant problems we face cannot be solved by the same ** level of thinking that created them. --- Albert Einstein ================================================================= out4b