Scheduled scripting date/time format
Scheduled scripting uses standard cron format for date/time parameters. Valid values are:
- * — execute script every minute, hour or day.
- */N — execute script every N minutes, hours or days. N is an integer, script is executed when current value divided by N gives 0 in modulo. For example, script with hour parameter set to */8 will be executed when hour is 0, 8 and 16.
- N — execute script exactly at N minute, hour or day.
- N-K — execute script when minute, hour or day is between N-K range (inclusive).
- N,K — it is possible to specify several N and N-K type parameters separated by comma. For example, script with minute parameter set to 15,50-52 will get executed when minute is 15, 50, 51 and 52