作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
要在子目录中查找所有带有 .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/
我是一名优秀的程序员,十分优秀!