Cho biết ý nghĩa của một mục từ crond như sau: 10 5 * * * /bin/foo:
Trả lời:
Đáp án đúng: C
The crontab entry `10 5 * * * /bin/foo` means: Execute the command `/bin/foo` at 5:10 AM every day. The fields represent minute, hour, day of month, month, and day of week. So, 10 is the minute, 5 is the hour (5 AM), and the asterisks mean every day, every month, and every day of the week.