在当前目录下查找深度为2级目录,并且创建时间是7天前的文件,然后删除,正确的是:
find -maxdepth +2 -mtime +7 -type file -exec rm
find -maxdepth 2 -mtime +7 -type f | xargs rm
find -maxdepth +2 -mtime -7 -type file -exec rm
find -maxdepth 2 -mtime 7 -type f | xargs rm