本文介绍了理解xargs中的递归grep的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

以下两个命令的实际区别是什么?



命令A

  

无.. -r 用于递归搜索目录,但 -type f 会阻止 find 返回目录名称。


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?

解决方案

None .. -r is for recursively searching directories, but the -type f will prevent find from returning directory names.

这篇关于理解xargs中的递归grep的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 00:48