当前位置: 代码迷 >> Solaris >> []solaris上grep怎么实现递归地查找某目录上的文件
  详细解决方案

[]solaris上grep怎么实现递归地查找某目录上的文件

热度:7952   发布时间:2013-02-26 00:00:00.0
[求助]solaris下grep如何实现递归地查找某目录下的文件。
linux好像支持-r -R 参数。

但solaris不支持。

$ grep -R count ./*
grep: illegal option -- R
Usage: grep -hblcnsviw pattern file . . .

$ grep -r count ./*
grep: illegal option -- r
Usage: grep -hblcnsviw pattern file . . .

$ uname -a
SunOS bjxsol3 5.10 Generic i86pc i386 i86pc

怎么解决这个问题呢?
------解决方案--------------------------------------------------------
find . -type f  
------解决方案--------------------------------------------------------
 xargs grep count