On 11/11/10 12:32 PM, Nicolas Ross wrote: > We even have a job that is scheduled to run every 60 seconds, but can take 2 > hours to complete. > > Is there any scheduler under linux that approch this ? don't even really need a scheduler for that. put the job in a loop like... while true; do your stuff sleep 60 done;