理解xargs中的递归grep [英] To understand recursive grep in xargs

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

问题描述

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



命令A

  find。 -type f -print0 | xargs -0 grep -r masi 

命令B

  find。 -type f -print0 | xargs -0 grep masi 

总之, 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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆