标签: crontab

2 篇文章

Linux下编写备份归档脚本
#!/bin/bash #备份归档 #创建备份归档目录 if [ ! -d "/backups" ]; then mkdir -p /backups fi for file in $(find /backups -name "backup-*" -type f | sort -r | tail -n +5); do rm …
Linux系统定时任务crontab定期删除180天以前的文件
一、配置任务 直接上命令 ## 编辑任务 crontab -e ## 任务内容 0 0 * * * find /path/to/files -type f -mtime +180 -exec rm {} \; 命令注释 0 0 * * * 表示每天的午夜执行任务。可以根据需要调整时间,具体格式为:分钟(0-59) 小时(0-23)…