I'm running Debian and using crontab and had erroneously thought that the following would run every 35 minutes :
*/35 * * * * php /myscript.php
But it doesn't, instead it runs 'at' 35 minutes past the hour, in the same way that this does :
35 * * * * php /myscript.php
But this, for example, does run every 20 minutes:
*/20 * * * * php /myscript.php
I'm making an assumption that because it goes over 30 minutes and therefore would not be able to run every 35 minutes (because the next hour arrives) it just runs at 35 minutes past.
Is there a way (without some complicated calculations) to have my task run every 35 minutes (or 45 for that matter)?
Thank you.