如何解决crontab:同一脚本仅在一天触发
我不是 linux 专家,需要一些支持来了解 crontab 之谜(对我而言)。 我想每周备份两次我的树莓派。 这是同一个脚本。但只有每个星期一的触发器 (dow=1) 执行。 星期五规则 (dow=5) 什么都不做 - 不保存备份。 我不明白为什么。 怎么了?我在哪里可以找到问题所在?
# Output of the crontab jobs (including errors) is sent through
# email to the user the crontab file belongs to (unless redirected).
#
# For example,you can run a backup of all your user accounts
# at 5 a.m every week with:
# 0 5 * * 1 tar -zcf /var/backups/home.tgz /home/
#
# For more information see the manual pages of crontab(5) and cron(8)
#
# m h dom mon dow command
0 4 * * 1 /home/pi/Backup/backup.sh > /dev/null
0 4 * * 5 /home/pi/Baclup/backup.sh > /dev/null
解决方法
你做的一切都是正确的。你只是错过了第二双眼睛,才发现你在第二行中有一个错字:
Baclup
vs Backup
;-)
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。