0

I configure the cron job in Cpanel, and it works when setting it to * * * * * , every minute.

However I dont want it to execute at the beginning of every minute, I want to specify an offset, like 7 seconds after the start of each minute.

I thought I would specify that by doing */7 * * * * But that doesn't work, I think it executes every 7th minute. There is no setting for "seconds" in cpanel. There is only "Minute Hour Day Month Weekday". So, is it possible to configure this?

Galivan
  • 4,842
  • 9
  • 44
  • 76

1 Answers1

0

have a look at this

* * * * * ( sleep 7 ; /path/to/executable param1 param2 )
Derviş Kayımbaşıoğlu
  • 28,492
  • 4
  • 50
  • 72