CronTool
Cron expression editor & debugger
Question

How can one schedule a cron job for every Monday, Wednesday and Friday at 7:00 pm?

Answer

You can use the following cron expression:


0 19 * * 1,3,5 command
Why this matters

The day-of-week field accepts a comma-separated list, where 0 (or 7) is Sunday and 1-6 is Monday through Saturday. So 1,3,5 is Monday, Wednesday, Friday. Combined with the time fields it becomes “19:00 on Monday, Wednesday, Friday”.


Most schedulers also accept name aliases: 0 19 * * MON,WED,FRI. They're easier to read in version control and cause fewer “wait, is 0 Sunday or Monday in this dialect?” debugging sessions. Quartz and AWS EventBridge are case-insensitive about it; some older Linux crontab implementations require uppercase.


A common variant: every other weekday (M-W-F vs T-Th). To stagger jobs across two weekdays, use 0 19 * * 2,4. To run every weekday at 19:00, use 0 19 * * 1-5. To run only on weekends, use 0 19 * * 0,6 (or SAT,SUN).

Read the dedicated guide: Cron every week.

Cron schedule used

Calendar

View future cron matches in a calendar

April 2026

Showing next 1000 cron schedules

Loading...

See this cron expression on the calendar → view example

Related cron questions

Other answers and worked examples for the most confusing cron expressions.

QuestionHow do I set a cron job to run twice a week (bi-weekly)?
QuestionHow do I set up a cron job that runs every day at 1PM, 2PM and 3PM?
QuestionCan I run a cronjob every three days?
QuestionI am trying to create a Cron expression that runs every day at 8:00 AM and 3:30 PM. I understand how to create an expression that runs once a day, but not at multiple set times.

Ready to schedule it?

Point Crontap at any URL. Pick any cron. Done.

WordPress, Shopify, Railway, Cloud Run, Vercel, HubSpot, Ghost, your own box. If it answers HTTP, Crontap can drive it on a clock you can read, in the timezone that actually matters, and page you when something breaks.

Free forever tier ・ No credit card required

Your next schedule
GET/wp-cron.php?doing_wp_cron=1

Schedule

every 5 minutes

Next run

in 23s

Permalink: https://tool.crontap.com/help/cron-job-every-monday-wednesday-and-friday-at-a-specific-time

Apihustle Logo

This tool is part of the Apihustle suite - a collection of tools to test, improve and get to know your API inside and out.

  • Clobbr logo

    Clobbr

    The app & CLI tool to test API endpoint speed.

    Visit
  • Crontap logo

    Crontap

    Schedule recurring API calls using cron syntax.

    Visit
  • CronTool logo

    CronTool

    Debug multiple cron expressions on a calendar.

    Visit

  • Page AI

    AI Website Generator that designs and writes clean code.

    Visit
  • Shipixen

    Generate customized boilerplates in minutes.

    Visit
  • Page UI

    Landing page UI components for React & Next.js

    Visit