How many cron fields are there for specifying the time to execute a cron job?
A.
1
B.
3
C.
4
D.
5
E.
6
Explanation:
minute hour day month day/weekExample:
0 22 * * * /usr/local/bin/somecommand
How many cron fields are there for specifying the time to execute a cron job?
How many cron fields are there for specifying the time to execute a cron job?
A.
1
B.
3
C.
4
D.
5
E.
6
Explanation:
minute hour day month day/weekExample:
0 22 * * * /usr/local/bin/somecommand
the correct answer is 7
D is correct answer. There are 5 fields for specifying the time (min, hour, day, month, day-week). The other field is the command.