crontab 每周五_crontab定时任务 每隔一周的周五执行

定时任务每隔一周的周五执行

* * * * 05 /bin/bash -c '(($(date +\%s) / 86400 \% 14))' && your-script

测试是否成功执行命令

写入定时任务

crontab -e

01 04 * * 05 /bin/bash -c '(($(date +\%s) / 86400 \% 14))' && /bin/date +\%F_\%w >>/tmp/date.log

修改时间进行测试,这里注意修改为周五,时间与定时任务中的时间相近

date -s "20180803"

date -s "04:00"

---------------------------------

date -s "20180810"

date -s "04:00"

---------------------------------

date -s "20180817"

date -s "04:00"

---------------------------------

date -s "20180824"

date -s "04:00"

---------------------------------

date -s "20180831"

date -s "04:00"

---------------------------------

date -s "20180907"

date -s "04:00

你可能感兴趣的:(crontab,每周五)