I know how to set up a cron which calls a script every 2 minutes. For example:
*/2 * * * *
But now I would like it to run only from 9.30 to 9.45, again every 2 minutes. What is the syntax for that purpose? I have tried with
*/2 9.30-9.45 * * *
but, obviously, it is not working.