Cronjob for 1st of January every year

后端 未结 3 1159
栀梦
栀梦 2020-12-14 00:39

I am trying to get the correct cronjob time for 1st of January every year.

I thougth about this: 0 0 1 1 *

Can anybody tell me, if it is correct

相关标签:
3条回答
  • 2020-12-14 01:19

    Yes, that looks like the very new year midnight.

    0 讨论(0)
  • 2020-12-14 01:22

    Yes that is correct.

    Here is a quick chart you can use for future reference

    # *    *    *    *    *  command to execute
    # ┬    ┬    ┬    ┬    ┬
    # │    │    │    │    │
    # │    │    │    │    │
    # │    │    │    │    └───── day of week (0 - 6) (0 to 6 are Sunday to Saturday)
    # │    │    │    └────────── month (1 - 12)
    # │    │    └─────────────── day of month (1 - 31)
    # │    └──────────────────── hour (0 - 23)
    # └───────────────────────── min (0 - 59)
    
    0 讨论(0)
  • 2020-12-14 01:33

    Yes, and you can also use @yearly or @annually which are synonyms for 0 0 1 1 *.

    (This applies at least to many distributions, but check yours to be sure.)

    See also: man 5 crontab and http://en.wikipedia.org/wiki/Cron

    0 讨论(0)
提交回复
热议问题