QuestionQ106
Linux FundamentalsA recurring task needs to be automated by scheduling the script at /usr/local/bin/cleanup.sh to execute every Friday at 11:00 PM.
Which of the following crontab entries correctly schedules the job?
- A 0 11 * * fri /usr/local/bin/cleanup.sh
- B
- 23 * * 5 /usr/local/bin/cleanup.sh
- C 0 23 5 * * /usr/local/bin/cleanup.sh
- D 0 23 * * 5 /usr/local/bin/cleanup.sh
Community Discussion