Complete the code to schedule a cron job that runs every minute.
*/1 * * * * [1]
The cron job needs the full path to the Python interpreter and the script to run every minute.
Complete the cron schedule to run a job every day at 2:30 AM.
30 [1] * * * /home/pi/backup.sh
The hour field should be 2 for 2 AM in 24-hour format.
Fix the error in the cron job that should run every Sunday at midnight.
0 0 * * [1] /home/pi/weekly_report.sh
Using 'Sun' is the correct way to specify Sunday in the day-of-week field for cron.
Fill both blanks to create a cron job that runs every 15 minutes and logs output.
[1]/15 * * * * /home/pi/script.sh > [2] 2>&1
The '*/15' means every 15 minutes. Redirecting output to /tmp/script.log saves logs.
Fill all three blanks to create a cron job that runs at 5:45 PM on weekdays and emails output.
[1] 45 17 [2] [3] /home/pi/daily_report.sh | mail -s "Report" user@example.com
The minute field is '*', day of month is '1-5' for weekdays, and day of week is '1,2,3,4,5' for Monday to Friday.