I currently have a cron job running every minute on my server, and I can do that without problem:
* * * * *
But how would I run two different files on alternate minutes?
So file '1.php' on even minutes, and '2.php' on odd minutes?
so...
00:00 - run 1.php 00:01 - run 2.php 00:02 - run 1.php 00:03 - run 2.php 00:04 - run 1.php
etc!