我在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
然后运行
...