Given the following user's crontab entry:
15 14 * * 1-5 /usr/local/bin/example.sh
When will the script /usr/local/bin/example.sh be executed?
Given the following user's crontab entry:
15 14 * * 1-5 /usr/local/bin/example.sh
When will the script /usr/local/bin/example.sh be executed?
The crontab entry '15 14 * * 1-5 /usr/local/bin/example.sh' specifies that the script /usr/local/bin/example.sh will be executed at 14:15 (2:15 PM) local time on Monday through Friday. The fields in the crontab entry represent minute (15), hour (14), day of month (*, meaning any day), month (*, meaning any month), and day of week (1-5, where 1 is Monday and 5 is Friday). Therefore, the script will run at 14:15 on weekdays.
Therefore, each line in a system crontab contains seven fields separated by a space: The minute of the hour (0-59). The hour of the day (0-23). The day of the month (1-31). The month of the year (1-12). The day of the week (0-7 with Sunday=0 or Sunday=7). The name of the user account to be used when executing the command. The command to run. https://learning.lpi.org/en/learning-materials/102-500/107/107.2/107.2_01/
E is correct
If cron.allow does not exist, and cron.deny does not exist, typically all users are allowed to use the cron service.