I haven't been able to find an example of how to run a command in crontab at 5 minutes past every hour.
I assumed that this would work
5 */1 * * *But it doesn't run.
Can anyone help?
Thanks in advance.
2 Answers
Just use 5 * * * *
the others are wilcards
if you wanted at 1:05am only that would be 5 1 * * *
You should use */5 */1 * * *
You should try yourself here.
2