标签: linux cron
我想每1.5分钟(90秒)运行一次cron作业,如何实现呢?
*/3 * * * * php -q hello.php */3 * * * * sleep 90; php -q hello.php
以上代码在120秒后运行。