Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cronjob for 1st of January every year

Tags:

cron

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?

like image 421
Mike Avatar asked Oct 21 '13 19:10

Mike


Video Answer


1 Answers

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) 
like image 114
Joe W Avatar answered Sep 23 '22 12:09

Joe W