Problem Statement
Describe a simple automation example using cron or at commands.
Explanation
You can automate database backups daily using cron.
For instance, schedule a cron job to run a MySQL dump script at midnight and store it with a timestamp for versioned backups.
Code Solution
SolutionRead Only
0 0 * * * /scripts/mysql_backup.sh
Practice Sets
This question appears in the following practice sets: