How to run the Cronjob with some delay on Boot
Running Cronjob with Delay:
Use the Sleep option to delay the script execution like below.
1 |
@reboot sleep 60 && my_script.sh |
Here above Cronjob will wait for 60 Seconds before executing the my_script.sh shell script.