linux 定时任务只保留7天内的文件和目录
shell脚本
#!/bin/bash ######################### #删除7天之前的文件 # ######################### tmp_path=/tmp/test/* find ${tmp_path} -maxdepth 0 -type d -ctime +7 | xargs rm -rvf
定时任务:crontab -e
[root@test ~]# crontab -e 1 0 * * * /root/test/cleanTmp.sh [root@test ~]# crontab -l 1 0 * * * /root/test/cleanTmp.sh