使用crontab每分钟执行一次脚本,每24小时执行一次脚本

Using crontab to execute script every minute and another every 24 hours

我需要一个crontab语法,它应该每分钟执行一个特定的php脚本/var/www/html/a.php。每分钟的执行必须在00:00开始。必须在00:00执行脚本的另一个任务(每24小时执行一次)。


每一分钟:

* * * * * /path/to/php /var/www/html/a.php

每24小时(每午夜):

0 0 * * * /path/to/php /var/www/html/reset.php

有关crontab的工作原理,请参阅以下参考:http://adminschoice.com/crontab-quick-reference,以及构建cron jobx的简便工具:http://www.htmlbasix.com/crontab.shtml


这是/etc/crontab的格式:

1
2
3
4
5
6
7
# .---------------- minute (0 - 59)
# |  .------------- hour (0 - 23)
# |  |  .---------- day of month (1 - 31)
# |  |  |  .------- month (1 - 12) OR jan,feb,mar,apr ...
# |  |  |  |  .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
# |  |  |  |  |
# *  *  *  *  * user-name  command to be executed

我建议将其复制并粘贴到crontab文件的顶部,这样您随时都可以方便地获得引用。默认情况下,Redhat系统以这种方式设置。

每分钟运行一次:

1
* * * * * username /var/www/html/a.php

每天午夜运行某物:

1
0 0 * * * username /var/www/html/reset.php

可以在要运行的命令中包含/usr/bin/php,也可以使php脚本直接执行:

1
chmod +x file.php

用shebang启动php文件,这样shell就知道要使用哪个解释器:

1
2
3
#!/usr/bin/php
<?php
// your code here