JavaScript is required

Cho biết ý nghĩa của một mục từ crond như sau: 10 5 * * * /bin/foo:

A.

Thực thi /bin/foo vào lúc 10:05 sáng mỗi ngày

B.

Thực thi /bin/foo vào 10 tháng 5 hàng năm

C.

Thực thi /bin/foo vào lúc 5:10 sáng mỗi ngày

D.

Không câu nào đúng

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.

Câu hỏi liên quan