-
-
Notifications
You must be signed in to change notification settings - Fork 1
Sub-minute syntax #52
Copy link
Copy link
Open
Labels
enhancementNon-breaking improvements to existing behaviourNon-breaking improvements to existing behaviour
Metadata
Metadata
Assignees
Labels
enhancementNon-breaking improvements to existing behaviourNon-breaking improvements to existing behaviour
This is non-standard, but it would be nice to be able to schedule a script for every 10 seconds. At the moment,
* * * * *is equal to once per minute, which is currently the most frequent cron setting.Setting
*/10 * * * *will trigger every 10 minutes.My proposed syntax for every 10 seconds:
The colon is obviously different than the slash, and is already used in time formats, so it shouldn't be too difficult to understand what this does without reading the docs.