我想使用以下属性递归在当前目录中找到所有文件:在最近10天内创建是htm或html文件内含以下文本: var iw = document; iw ['write'] 有人可以帮忙吗? 最佳答案 这应该很接近: find . -ctime -10 -and \ \( -iname '*.html' -or -iname '*.htm' \) -print0 | \ xargs -0 egrep -l "var iw=document;iw\[.*write"