linux_crontab_定时删除

#每天2:30 删除4天前qac的原始log
30 2 * * * find /home/iknow/ETL/RetlPull/retl-pull/data/qac -name qac.log.new.* -type f -mtime +3 | xargs -i rm -rf {}

原文地址:https://www.cnblogs.com/cphmvp/p/6477433.html