gpt4 book ai didi

grep - 如何在具有特定扩展名的文件中递归 grep?

转载 作者:行者123 更新时间:2023-12-01 10:21:17 28 4
gpt4 key购买 nike

要在子目录中查找所有带有 .out 扩展名的文件路径,我使用

find . -name '*.out'

要在所有以 .out 结尾的文件中 grep 模式,我使用

grep pattern *.out

如何组合这两个命令,以便找到所有文件,然后在这些文件中进行 greps?

我正在寻找一个优雅的替代品

grep -r 'pattern' . | grep '.out'

最佳答案

如果你的 shell 是 Bash 版本 4+,你可以使用 globstar:

shopt -s globstar
grep pattern **/*.out

来自 Bash manual :

globstar

If set, the pattern ‘**’ used in a filename expansion context will match all files and zero or more directories and subdirectories. If the pattern is followed by a ‘/’, only directories and subdirectories match.

关于grep - 如何在具有特定扩展名的文件中递归 grep?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51952546/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com