Cron To Run Every 30 Minutes Code Example


Example 1: crontab every 30 minutes in specific minute


// every 30 minutes
*/30 * * * *

// it depends on the crontab version you are using
// example: every 30 minutes at number '5'

// mode 1
5,35 * * * *

// mode 2
5/30 * * * *

Example 2: run cron every 15 minutes


*/15 * * * *

Comments

Popular posts from this blog

530 Valid Hostname Is Expected When Setting Up IIS 10 For Multiple Sites

C Perror Example

Converting A String To Int In Groovy