I want to programme a cron for 2 specifics hours : 14h15 and 22h15. How can I do that ?
Because I want to mix this 2 crons :
15 14 * * *
15 22 * * *
Someone have an idea ?
I want to programme a cron for 2 specifics hours : 14h15 and 22h15. How can I do that ?
Because I want to mix this 2 crons :
15 14 * * *
15 22 * * *
Someone have an idea ?
This should do it: 15 14,22 * * *
.
There are a number of sites where you can test cron expressions. Here is one: https://crontab.guru/#15_14,22___*