Crontab x minutes past every hour on Ubuntu

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 * * *

0

You should use */5 */1 * * *

You should try yourself here.

2

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like