How can I run a cron job every 5 minutes starting from a time other than 0 minutes?
Syntax 1 */5+2 * * * * 1st-script */5+4 * * * * 2nd-script For future reference take a look at this online Cron Job Generator. Syntax 2 Since there are several reports that the + syntax is not working on Ubuntu 14.04, here’s a variation: 2-59/5 * * * * 1st-script 4-59/5 * * … Read more