DEV Community

Zaw Htut Win
Zaw Htut Win

Posted on

Cron can only run minium 1 minute interval? No, try this.

* * * * * python testme.py
* * * * * (sleep 30; python testme.py)
Enter fullscreen mode Exit fullscreen mode

The above cron job will run every 30 seconds.

Top comments (0)