删除指定目录 180天前的文件
find /data/xxx/ -ctime +180 -type f -exec rm -rf {} ;

删除指定目录 30分钟前的文件
find /data/xxx/ -cmin +30 -name “*” -exec /bin/rm -rf {} ;