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
标签:tmp,天内,crontab,linux,test,定时,root From: https://www.cnblogs.com/yizhipanghu/p/17407996.html