Complete the code to schedule a task every minute using cron syntax.
* * * * * [1]The cron job line requires a command to run after the time fields. Here, running a Python script is a common task.
Complete the cron schedule to run a task every day at 3 AM.
[1] 3 * * * /usr/bin/backup.sh
The first field is minutes. To run at exactly 3:00 AM, minutes must be 0.
Fix the error in this cron line to run a script every Monday at 5 PM.
0 17 * * [1] /home/user/script.sh
In cron, Monday is represented by 1 in the day-of-week field.
Fill both blanks to run a command every 15 minutes on weekdays.
[1] */15 * * [2] /usr/bin/cleanup.sh
To run every 15 minutes, use '*/15' in the minutes field. Weekdays are days 1 to 5.
Fill all three blanks to create a cron job that runs at 2:30 AM on the 1st of every month.
[1] [2] [3] * * /usr/bin/monthly_report.sh
The cron fields are: minute (30), hour (2), day of month (1) to run at 2:30 AM on the first day.