Linux Cron Job Scheduler Guide
crontab is an extremely useful tool in Linux for scheduling scripts and programs to run at specified times. Below we use a MySQL backup script as an example to illustrate. Here’s how to execute the backup.sh script at 23:00 every day:
crontab -e
Enter the following code, then save with shift+z+z:
0 23 * * * /ho …