Is there any difference between creating a CRON tab using 0/5 and */5?
For example:
0/5 * * * *
vs
*/5 * * * *
This IBM support article explains how stepping works. In the case of */5, it would occur every 5 minutes (0, 5, 10, etc). That is the same as 0-59/5. In the case of 0/5, I just tested it and it will never run.
crontab(5)says that steps (/N) are allowed with ranges and*is shorthand for the rangefirst-lastfor that field. It doesn't say anything for steps without ranges, so I'd assume illegal syntax, or ignored.