Answers for "start cron on a specific date"

1

run cron once a day

#run a cron once a day at 3am
0 3 * * *
Posted by: Guest on August-02-2021
0

run cron job in seconds

* * * * * /foo/bar/your_script
* * * * * sleep 15; /foo/bar/your_script
* * * * * sleep 30; /foo/bar/your_script
* * * * * sleep 45; /foo/bar/your_script
Posted by: Guest on March-23-2022

Code answers related to "start cron on a specific date"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language