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

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

我通常使用这样的东西:

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

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

925967 次浏览

grep(1)手册页:

  -l, --files-with-matchesSuppress  normal  output;  instead  print the name of each inputfile from which output would normally have  been  printed.   Thescanning  will  stop  on  the  first match.  (-l is specified byPOSIX.)

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

unix标准

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

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

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

grep -rl "mystring"

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

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

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

获取带有路径的文件名的命令建议

sudo find /home -name *.php

这个命令在我的LinuxOS上的输出:

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