0
votes

I need to run cron job every hour at first minute

I have already tried the following :

1>  0 * * * * ? *

2> 0 */1 * * * ? *

Unfortunately I did not get correct results

I need the job to start at first minute for every hour as the following :

0:01
1:01
2:01
3:01
4:01
.
.
23:01

end
1
I think you're looking for this. link. 1 * * * * in the future, you should use backticks to denote code/cli operations. - technogeek1995

1 Answers

1
votes

Every hour at minutes 1

 0 1 0/1 ? * * *

ref Cron Expression Generator

Ref  cron expression