每小时,每半小时和每15分钟安排一次php脚本Ubuntu

时间:2018-08-17 09:53:45

标签: ubuntu cron

我有三个不同的php文件,每个文件都要计划:

  • 小时,
  • 半小时
  • 15分钟。

有人能告诉我在Ubuntu中怎么做吗?

1 个答案:

答案 0 :(得分:2)

您可以编辑/etc/crontab:

*/15 * * * * php every15minutes_file.php
*/30 * * * * php every30minutes_file.php
 0   * * * * php every1hour_file.php #it will run on full hour

您还可以探索https://crontab.guru来更好地理解