You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
*:10 * * * *
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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: