Is there any way to do a cron job that looks like this: 1 2,6,10 * * *
I really need the ability to start a job in during a different hour(02:00) that runs every 4 hours.
EasyCron supports full syntax of Cron expression used in Linux/Unix cron system.
It means that you can simply add a Cron job with Cron expression "1 2/4 * * *" to achieve what you mentioned.