Cron patterns are used to schedule tasks at specific intervals. The pattern consisting of asterisks indicates that an action should occur every minute of every hour, day, and month. When the pattern includes a forward slash followed by a number, it suggests that the action should happen at regular intervals within those minutes. For instance, an interval of five minutes would trigger the action every five minutes. A pattern that specifies a zero followed by a space, then an asterisk, indicates the action should take place at the start of each hour. If a specific time is mentioned, such as nine in the morning, the action is scheduled for that precise time each day. Patterns can also specify the occurrence on particular days of the month, such as the first day, or on specific days of the week, like every Monday at the same time. Additionally, patterns can be designed to execute actions at more frequent intervals, such as every ten seconds. Certain patterns can even define a specific date and time, such as midnight on the first day of January.
Source Link


