问题描述
我不是 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
;-)