如何使用grep在Linux上显示文件名?

时间:2011-07-09 22:24:53

标签: linux grep

如何在Linux上使用grep显示文件名(无内联匹配)?

我通常使用类似的东西:

find . -iname "*php" -exec grep -H myString {} \;

如何获取文件名(带路径),但没有匹配?我必须使用xargs吗?我没有在grep手册页上看到这样做的方法。

4 个答案:

答案 0 :(得分:1348)

标准选项grep -l(即小写L)可以做到这一点。

来自Unix standard

-l
    (The letter ell.) Write only the names of files containing selected
    lines to standard output. Pathnames are written once per file searched.
    If the standard input is searched, a pathname of (standard input) will
    be written, in the POSIX locale. In other locales, standard input may be
    replaced by something more appropriate in those locales.

在这种情况下,您也不需要-H

答案 1 :(得分:117)

来自grep(1)手册页:

  -l, --files-with-matches
          Suppress  normal  output;  instead  print the name of each input
          file from which output would normally have  been  printed.   The
          scanning  will  stop  on  the  first match.  (-l is specified by
          POSIX.)

答案 2 :(得分:28)

对于简单的文件搜索,您可以使用grep的-l-r选项:

grep -rl "mystring"

所有搜索都是由grep完成的。当然,如果您需要在其他参数上选择文件,找到正确的解决方案:

find . -iname "*.php" -execdir grep -l "mystring" {} +

execdir选项为每个目录构建每个grep命令,并将文件名连接成一个命令(+)。

答案 3 :(得分:1)

您的问题我如何才能获取文件名(带有路径)

您的语法示例查找。 -iname“ * php” -exec grep -H myString {} \;

我的命令建议

sudo find /home -name *.php

我的Linux操作系统上此命令的输出:

compose-sample-3 / html / mail / contact_me.php

当您需要带路径的文件名时,请尽情享受吧!