问题
I try to set up a cron on my cpanel. I want to execute that cron every hour
ex.: 1:00,2:00 ,3:00....23:00,24:00
How can I do that?Can anyone help me?
回答1:
Usually the structure is like this
0 * * * *
anf if you are trying to acces a link
0 * * * * wget http://example.com/file.php
回答2:
/5 means you run something every 5:th (hour minute or similar). Try /1.
回答3:
You can also use:
@hourly your_command
Source
来源:https://stackoverflow.com/questions/26340358/set-up-a-cron-every-hour