在一个时间段内多次运行PHP crone


Run PHP crone multiple time in a timeframe

我有一个PHP cron作业,我需要在晚上10点到11点之间运行它10次在我的服务器

/usr/local/bin/php -q /home/geniusgr/public_html/cron.php 

您可以使用以下命令:

*/6 22 * * * /usr/local/bin/php -q /home/geniusgr/public_html/cron.php

在22点(晚上10点)每6分钟一班:

22.00 -  1st
22.06 -  2nd
22.12 -  3rd
22.18 -  4th
22.24 -  5th
22.30 -  6th
22.36 -  7th
22.42 -  8th
22.48 -  9th
22.54 - 10th