Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
 cron 23:00                              # run every day at 23:00
 cron 10:00 20:00 01:00                  # run every hour between 10am and 8pm 
 cron +10:00 20:00 01:00                 # relative cron, run at 10 hours after suite start(or when re-queued), up to 20 hours, in increments of 1 hour
 cron -w 0,1 10:00                       # run every Sunday and Monday at 10am
 cron -d 10,11,12 12:00                  # run 10th, 11th and 12th of each month ~ # at noon
 cron -m 1,2,3 12:00                     # run every day in January, February and March at 12 noon
 cron -w 0 -m 5,6,7,8 10:00 20:00 01:00  # run every Sunday, in May,June,July,August from 10am to 8pm, every hour 

...