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:02 AM 运行......我怎样才能让它每天运行@ 1:02:05?
这是不可能的,因为 cron 至少只能在几分钟内运行。
为了达到同样的效果,你可以做的是在你的脚本中延迟第一行:
sleep(5); // sleep for 5 seconds
这样脚本实际上开始于1:02:05.
1:02:05