1、例:脚本对应的要删除的目录为/home/logs
在home目录创建文件clearLogFiles.sh:
Linux下自动删除2小时之前的日志文件 (或者清空日志)
find /home/log/ -mmin +120 -name "*.log" -exec rm -rf {} \;
# > catalina.out
2、为脚本增加可执行权限
chmod +x clearLogFiles.sh
3、编辑定时任务
crontab -e
#设置每天凌晨3点30执行
30 3 * * * sh /home/clearLogFiles.sh
4、重启cron 服务:
/sbin/service crond reload //重新载入配置
/sbin/service crond restart //重启服务
标签:删除,clearLogFiles,sh,Linux,home,日志,定时
From: https://www.cnblogs.com/maxmoore/p/17307404.html