user3305327
user3305327

Reputation: 907

Scheduling a cron job for a particular time

I am trying to run a particular PHP script using CRON and PuTTy on everyday at 10.30pm. I have managed to run this script in every 5 minutes by this following statement

*/5 * * * * curl http://myserver.com/test/test.php

This script enables me to run test.php on every 5 minutes but I want it to run everyday 10.30 pm. Can anyone please help me with this situation. This is first time am working with CRON JOB.

Upvotes: 0

Views: 164

Answers (1)

2kai
2kai

Reputation: 603

30 22 * * * curl http://myserver.com/test/test.php

Cron would be start every day at 10:30pm

Upvotes: 3

Related Questions