I have found the following entry in our crontab, and wanted to make sure that I have interpreted it correctly:
0 */2 * * * [some command]
I am assuming that this means run the command twice a day on the hour. i.e. at 12:00 and 00:00.
Assuming this is the case, it leads me to also ask what happens if I choose a number that doesn't divide neatly, e.g.
0 * * * */2 [some command]
I'm assuming this would mean run on the hour every hour, but only on 2 days of the week - but which days given that a week does not easily divide into 2?