Complete the code to schedule a script to run every minute using cron syntax.
* * * * [1] /home/pi/data_collect.shThe asterisk (*) means 'every' in cron syntax. Here, the last asterisk means every day of the week.
Complete the cron schedule to run a script every hour at minute 30.
30 [1] * * * /home/pi/data_collect.sh
The asterisk (*) in the hour field means every hour. So the script runs at minute 30 of every hour.
Fix the error in the cron command to run a script every day at 6 AM.
[1] 6 * * * /home/pi/data_collect.sh
The first field is minutes. To run at 6:00 AM, minutes should be 0 and hour 6.
Fill both blanks to schedule a script to run every Monday at 7 AM.
0 [1] * * [2] /home/pi/data_collect.sh
The hour is 7 for 7 AM, and 1 in the day-of-week field means Monday.
Fill all three blanks to schedule a script to run at 5:15 PM on the 10th day of every month.
[1] [2] [3] * * /home/pi/data_collect.sh
Minute is 15, hour is 17 (5 PM in 24-hour format), and day of month is 10.