Problem Statement
Which command edits scheduled recurring jobs for the current user?
Explanation
crontab -e opens the user’s cron table for editing recurring job schedules.
Each line defines when and how often a command runs automatically.
Code Solution
SolutionRead Only
crontab -e 0 2 * * * /scripts/backup.sh
Practice Sets
This question appears in the following practice sets: