Your syntax is slightly wrong. Say:
*/15 * * * * command
|
|--> `*/15` would imply every 15 minutes.
* indicates that the cron expression matches for all values of the field.
/ describes increments of ranges.
Your syntax is slightly wrong. Say:
*/15 * * * * command
|
|--> `*/15` would imply every 15 minutes.
* indicates that the cron expression matches for all values of the field.
/ describes increments of ranges.