用find和grep查找文件内容 Posted on 2009-12-08 In ubuntu 查找 包含alias字符串的*.conf的文件 find / -name "*.conf" | xargs grep "alias" grep -R -l 一些也可以实现,但是通过管道 | 比单纯用grep 复杂的参数更有效率。 xargs是用来展开find获得的结果,使其作为grep的参数。