Cron Expression to English Translator(crontab.guru) |
Cron Expression to English Translator(crontab.guru) |
So I thought I'd pull out one of the examples from my crontab that didn't work for that one and try it on this one:
6/2-59 * * * *
Nope, doesn't work.I'm curious, what is the expected behavior here? `6/2` would say "every 2nd minute, starting from minute 6". You can combine a range and a step like this: `6-30/2` but I'm not sure how to parse your step with a range.
Is it possible crontab.guru is exposing a bug in your crontab that your version of cron just happens to be tolerant of?'
Edit: You can see in this line how a range and step is used in a normal for loop in the cron scheduler: https://github.com/rhuitl/uClinux/blob/master/user/vixie-cro...
In this case, the variable "num3" is the step value.
So the syntactically valid version does not work in that earlier cron-to-English translator, but it does appear to work in this version.
My apologies for the error on my part.