使用 Shell 的常见做法是将其作为 Cron 作业运行,以便定期清理数据库或发送新闻稿。这非常容易设置,例如
*/5 * * * * cd /full/path/to/root && bin/cake myshell myparam
# * * * * * command to execute
# │ │ │ │ │
# │ │ │ │ │
# │ │ │ │ \───── day of week (0 - 6) (0 to 6 are Sunday to Saturday,
# | | | | or use names)
# │ │ │ \────────── month (1 - 12)
# │ │ \─────────────── day of month (1 - 31)
# │ \──────────────────── hour (0 - 23)
# \───────────────────────── min (0 - 59)
您可以在此处了解更多信息:https://en.wikipedia.org/wiki/Cron
提示
使用 -q
(或 –quiet) 为 Cron 作业静音所有输出。