我不明白为什么它无法运行。
我用crontab -e
它来创作。
它归我所有,但是它所在的目录归 root 所有。
它位于 /var/spool/
系统日志上没有 cron 条目。
# command - The command you want to run. This can contain spaces or point to a bash script.
# For more information see the manual pages of crontab(5) and cron(8)
# m h dom mon dow command
# Run my backup script at 10 a.m every day
0 10 * * * /home/andy/bin/Backup_18_04.sh
# Run my backup script at 8 p.m every day
0 20 * * * /home/andy/bin/Backup_18_04.sh
# Run script EVERY 2 DAYS to cleanup backup directories of older files
0 20 */2 * * /home/andy/bin/Delete_All_But_2_Newest_Files.sh
# Delete date files from /media/andy/MAXTOR_SDB1/Ubuntu_Mate_18.04/
0 20 * * * /home/andy/bin/Delete_All_But_2_Newest_Date_Files.sh
答案1
问题是我的计算机在脚本计划运行期间处于睡眠状态。:-)