当前位置: 技术问答>linux和unix
[求助]solaris下grep如何实现递归地查找某目录下的文件。
来源: 互联网 发布时间:2016-09-12
本文导语: 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 SunO...
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
怎么解决这个问题呢?
但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