0

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 ?

Community
  • 1
  • 1
Kozame
  • 289
  • 2
  • 11
  • See https://stackoverflow.com/questions/35574603/run-cron-job-everyday-at-specific-time/35575322#35575322 https://stackoverflow.com/questions/13993556/execute-crontab-twice-daily-at-00h-and-1330 – kvantour Jan 28 '19 at 16:50

1 Answers1

4

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___*

DaggeJ
  • 2,094
  • 1
  • 10
  • 22