crontab定时任务 每隔一周的周五执行
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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"
---------------------------------
date -s "20180914"
date -s "04:00"
---------------------------------
观察文件是否生成是否生成所需要的内容
[[email protected] scripts]# cat /tmp/date.log
2018-08-03_5
2018-08-17_5
2018-08-31_5
2018-09-14_5
[[email protected] scripts]#
以上是关于crontab定时任务 每隔一周的周五执行的主要内容,如果未能解决你的问题,请参考以下文章