Next: Penultimate day of every month, Previous: Two hours every day, Up: Extended Guile examples [Contents][Index]
The command
(job '(next-hour-from (next-day) '(16)) "my-program")
will run my-program
every day at four o’clock in the
afternoon. However, if mcron is started with this script at midday,
the first time the command will run will be four o’clock tomorrow;
today’s appointment will be missed (one time only).
The correct way to specify this requirement is simply
(job '(next-hour '(16)) "my-program")