我希望在cron中运行另一个页面之后运行php页面

时间:2017-10-23 23:22:50

标签: php curl cron

我在crontab中有一个工作,我希望在另一个页面运行后运行页面

 * * * * * curl http://127.0.0.1/page1.php >/dev/null 2>&1 
 * * * * * sleep 10;curl http://127.0.0.1/page1.php >/dev/null 2>&1 
 * * * * * sleep 20;curl http://127.0.0.1/page1.php >/dev/null 2>&1 
 * * * * * sleep 30;curl http://127.0.0.1/page1.php >/dev/null 2>&1 
 * * * * * sleep 40;curl http://127.0.0.1/page1.php >/dev/null 2>&1 
 * * * * * sleep 50;curl http://127.0.0.1/page1.php >/dev/null 2>&1 

此页面运行完成时

* * * * * curl http://127.0.0.1/page1.php >/dev/null 2>&1

我想要运行此

* * * * * sleep 10;curl http://127.0.0.1/page1.php >/dev/null 2>&1

然后运行

...

0 个答案:

没有答案