Cron Job Every 30 Minutes Code Example


Example: 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 * * * *

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