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

linux 多个文件中查找字符串

时间:2015-02-09 15:24:40      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:

2015年2月9日 14:36:38

# find <directory> -type f -name "*.c" | xargs grep "<strings>"

<directory>是你要找的文件夹;如果是当前文件夹可以省略
-type f 说明,只找文件
-name "*.c" 表示只找C语言写的代码,从而避免去查binary;也可以不写,表示找所有文件
<strings>是你要找的某个字符串

linux 多个文件中查找字符串

标签:

原文地址:http://www.cnblogs.com/iLoveMyD/p/4281534.html

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