Sa'ad Qasaymeh
Sa'ad Qasaymeh

Reputation: 35

Run cron job every first minute of every hour

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

Upvotes: 1

Views: 3035

Answers (1)

Reegan Miranda
Reegan Miranda

Reputation: 2949

Every hour at minutes 1

 0 1 0/1 ? * * *

ref Cron Expression Generator

Ref  cron expression

Upvotes: 2

Related Questions