Problem Statement
Which command is used to schedule tasks to run automatically at specific intervals?
Explanation
The cron daemon runs scheduled commands defined in crontab files.
It is used for automating backups, reports, and maintenance tasks at fixed times or dates.
Code Solution
SolutionRead Only
crontab -e 0 2 * * * /home/user/backup.sh
Practice Sets
This question appears in the following practice sets: