|
发表于 2010-10-11 12:38:18
|
显示全部楼层
- find . -name "rec20100901*" | xargs grep [color="Red"]-E[/color] "\*\*00|\*\*60"
复制代码 why not- find . -name "rec20100901*" -exec grep [color="Red"]-E[/color] "\*\*00|\*\*60" {} \;
复制代码 to avoid fork(2) overhead imposed by xargs(1)? |
|