删除指定目录下N天以前的日志文件

删除指定目录下N天以前的日志文件

find /path -name "*.log" -type f -mtime +210 -exec rm -f {} \;