了解 xargs 中的递归 grep
以下两个命令之间有什么实际区别?
命令 A
find . -type f -print0 | xargs -0 grep -r masi
命令 B
find . -type f -print0 | xargs -0 grep masi
简而言之,命令 A 的实际好处是什么?
What is the practical difference between the following two commands?
Command A
find . -type f -print0 | xargs -0 grep -r masi
Command B
find . -type f -print0 | xargs -0 grep masi
In short, what is the practical benefit of Command A?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
None ..
-r
用于递归搜索目录,但-type f
将阻止find
返回目录名称。None ..
-r
is for recursively searching directories, but the-type f
will preventfind
from returning directory names.我认为没有
A 将尝试递归文件名(因为 find 仅搜索文件),因此它不会递归到任何内容......
I think none
The A will try to recurse over file names (as the find is only searching for files) so it will not recurse into anything...