【转】linux 下查找文件的内容

转载自 : http://blogold.chinaunix.net/u1/55630/showart_683312.html

#> find . -type f -exec grep ‘mingtian’ -l {} \;
grep -l :是显示匹配的内容的文件名字!
或者:
#> find . -type f -name “*.*” |xargs grep ‘xiaoshou’ -l
(这个方法 不好,挺乱的,还慢,推荐前一个方法!)

此条目发表在 Linux使用 分类目录。将固定链接加入收藏夹。

发表评论

电子邮件地址不会被公开。 必填项已用*标注

您可以使用这些HTML标签和属性: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>