-3

Hi all I have an ubuntu server where I want to create a cron every sunday al 23:00 I have read manual and I have try to use some cron generator. I have tried in this mode:

0 23 * * * root test.php

But this I think that every day works right? How can I make that this script only works on Sunday?

Thanks

WebDesigner
  • 97
  • 1
  • 5

1 Answers1

1
0 23 * * 0 root test.php

last field is"day of week" and 0 represents sunday.

Pascal Schmiel
  • 1,728
  • 12
  • 17