What does
2 * * * *
means in crontab context?
I want to run my program every 2 minutes; is that what 2 * * * * means?
|
What does
means in crontab context? I want to run my program every 2 minutes; is that what 2 * * * * means?
| ||||
|
feedback
|
This question came from our site for professional and enthusiast programmers.
|
Not quite; that means every 2nd minute of the hour (i.e., 6:02, 7:02, 8:02, etc.). To make it every 2 minutes, use
You can read more about the crontab syntax and available options here at Wikipedia. Ubuntu's got a good overview too. | |||
|
feedback
|