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

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

问题描述

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天全站免登陆