If I have a crontab job that runs, for instance, every hour, but that job may take more than an hour to complete, will the next job fail to run?
|
|
No, cron scripts run parallelly, if you do not implement some locking mechanism. See Quick-and-dirty way to ensure only one instance of a shell script is running at a time and Correct locking in shell scripts? for possible solutions. A simpler way is to use |
|||||||
|
|
There's also
(It also provides |
|||
|
|

