I have several fetch scripts that need to run, but I can't (and don't want to) run them all at once.
I would like to run each every 45 minutes, but not all at same time. Instead, with 1 minute offset each.
Bash script was declined, they can freeze and I want to run next one after minute even if the first one has freezed or is not yet finsihed.
I know */45
is every 45 minutes, but if I change first asteriks by values, like this:
0/45 * * * * root /home/rrr/bash_devel/echo.sh
35/45 * * * * root /home/rrr/bash_devel/echo.sh
40/45 * * * * root /home/rrr/bash_devel/echo.sh
It does not seem to work.
Is there any way how to achive that? Or perhaps some better tool than CRON?