I need help on a proper cron expression that will fire the job immediately after it's launched, then reoccurring every minutes thereafter. So far I have
0 0/1 * 1/1 * ? *?
But that only fires at the minute mark (i.e. 3:31:00, 3:32:00). So if I launch the job at 3:45:54, I want it to execute right away, then the next fire would be at 3:46:54.
thanks.