Page tree

Versions Compared

Key

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

...

The cron is a long-running process that executes commands at specific dates and times. You can use this to schedule activities, either as one-time events or as recurring tasks.

Timing Syntax

Cron determines how often and when the cron job is going to run.

...

  1. Minute
  2. Hour
  3. Day of month
  4. Month
  5. Day of week

Examples based on the above "commands to execute"

Info
titleThis cron job will run every minute, all the time

* * * * * [command]

...