我想以递归方式查找当前目录中的所有文件,并使用以下属性:
有人可以帮忙吗?
答案 0 :(得分:2)
这应该是关闭的:
find . -ctime -10 -and \
\( -iname '*.html' -or -iname '*.htm' \) -print0 | \
xargs -0 egrep -l "var iw=document;iw\[.*write"
答案 1 :(得分:1)
听起来好像你想要的东西:
find . -mtime 10 -and \( -iname '*.html' -or -iname '*.htm' \) -print0 | xargs -0 egrep -H "var iw=document;iw\[.*write"
答案 2 :(得分:0)
xargs
有点多余。
find . -ctime -10 -and \
( -iname '*.html' -or -iname '*.htm' \) \
-exec fgrep -l "var iw=document;iw['write']" {} +