Cron Expression: Cron Every 2 Weeks

Learn how to create a cron expression for 'cron every 2 weeks'. Runs every 14 days (2 weeks) with our free cron generator tool.

Cron Expression

0 0 */14 * *

Expression Breakdown

0
Minute
(0-59)
0
Hour
(0-23)
*/14
Day
(1-31)
*
Month
(1-12)
*
Weekday
(0-6)
Field Value Meaning
Minute 0 At minute 0
Hour 0 At hour 0
Day of Month */14 Day */14
Month * Any month
Day of Week * Any day of the week

This cron expression represents: cron every 2 weeks

Cron Expression

0 0 */14 * *

What This Expression Does

Runs every 14 days (2 weeks)

Use Cases

This cron schedule is commonly used for:

How to Use

  1. Copy the cron expression above
  2. Open your crontab with crontab -e
  3. Add a new line with: 0 0 */14 * * /path/to/your/script.sh
  4. Save and exit

Alternative Formats