Exercise: Quizz

17 - What syntax would allow to schedule a job with cron at 6:00 AM every Monday?


0 6 * * Mon root /root/backup-script.sh
* * 6 0 Mon root /root/backup-script.sh
6 0 * * Mon root /root/backup-script.sh
* * 0 6 Mon root /root/backup-script.sh