Reputation: 907
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
Reputation: 603
30 22 * * * curl http://myserver.com/test/test.php
Cron would be start every day at 10:30pm
Upvotes: 3