如何使用 grep 在 Linux 上仅显示文件名?[关闭]
- 2024-10-14 08:40:00
- admin 原创
- 115
问题描述:
如何在 Linux 上使用grep仅显示文件名(无内联匹配)?
我通常使用类似的东西:
find . -iname "*php" -exec grep -H myString {} ;
我怎样才能只获取文件名(带路径),而不获取匹配项?我必须使用xargs吗?我在 grep 手册页上没有看到执行此操作的方法。
解决方案 1:
标准选项grep -l
(小写的 L)可以做到这一点。
来自Unix 标准:
-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
。
解决方案 2:
从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.)
解决方案 3:
对于简单的文件搜索,您可以使用 grep-l
和-r
选项:
grep -rl "mystring"
所有的搜索都是由 grep 完成的。当然,如果你需要根据其他参数选择文件,find是正确的解决方案:
find . -iname "*.php" -execdir grep -l "mystring" {} +
该execdir
选项为每个目录构建每个 grep 命令,并将文件名连接成仅一个命令(+
)。
相关推荐
热门文章
项目管理软件有哪些?
- 2024年20款好用的项目管理软件推荐,项目管理提效的20个工具和技巧
- 2024年开源项目管理软件有哪些?推荐5款好用的项目管理工具
- 项目管理软件有哪些?推荐7款超好用的项目管理工具
- 项目管理软件哪个最好用?盘点推荐5款好用的项目管理工具
- 项目管理软件有哪些最好用?推荐6款好用的项目管理工具
- 项目管理软件有哪些,盘点推荐国内外超好用的7款项目管理工具
- 2024项目管理软件排行榜(10类常用的项目管理工具全推荐)
- 项目管理软件排行榜:2024年项目经理必备5款开源项目管理软件汇总
- 2024年常用的项目管理软件有哪些?推荐这10款国内外好用的项目管理工具
- 项目管理必备:盘点2024年13款好用的项目管理软件
热门标签
云禅道AD