Set up a cron every hour

南笙酒味 提交于 2019-12-11 07:09:50

问题


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

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!