Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これは現在実行中の cronjob です。
2 1 * * * cd /var/www; php auto.php
毎日午前 1 時 2 分に実行されるということです。
cron は最小でも分間隔でしか実行できないため、これは不可能です。
同じ効果を得るためにできることは、最初の行としてスクリプトに遅延を持たせることです:
sleep(5); // sleep for 5 seconds
このように、スクリプトは実際には から始まり1:02:05ます。
1:02:05