크론 표현식 해석기

Cron Expression Parser

필드 순서: 분(0-59) 시(0-23) 일(1-31) 월(1-12) 요일(0-7, 0·7=일요일). *, */n, a-b, a,b,c 지원.

Field order: minute(0-59) hour(0-23) day(1-31) month(1-12) weekday(0-7, 0/7=Sun). Supports *, */n, a-b, a,b,c.

실행 주기
Schedule
다음 실행 시각 (5개)
Next 5 run times

입력한 표현식은 브라우저에서만 처리되며 서버로 전송·저장되지 않습니다.Your expression is processed entirely in your browser — never uploaded or stored.

크론 표현식이란?

크론(cron) 표현식은 리눅스·서버 스케줄러에서 작업 실행 시각을 지정하는 5개 필드(분 시 일 월 요일) 문자열입니다. 이 도구는 표현식을 입력하면 실행 주기를 사람이 읽는 문장으로 설명하고, 현재 시각 기준 다음 실행 시각 5개를 계산해 보여줍니다.

필드·기호 설명
  • 필드 순서: 분(0-59) 시(0-23) 일(1-31) 월(1-12) 요일(0-7, 0과 7은 모두 일요일)
  • * : 모든 값(매 단위)
  • */n : n 간격마다 (예: */15 = 0,15,30,45)
  • a-b : a부터 b까지 범위 (예: 1-5 = 월~금)
  • a,b,c : 값 목록 (예: 1,15 = 매월 1일과 15일)
참고: 다음 실행 시각은 브라우저의 로컬 시각·시간대를 기준으로 계산합니다.
개인정보·처리 방식

모든 해석과 계산은 사용자의 브라우저 안에서만 이루어집니다. 입력한 크론 표현식은 서버로 전송되거나 저장되지 않습니다.

What is a cron expression?

A cron expression is a 5-field string (minute hour day month weekday) used by Linux and server schedulers to specify when a job runs. Enter an expression to get a human-readable schedule description and the next 5 run times based on the current time.

Fields & symbols
  • Field order: minute(0-59) hour(0-23) day(1-31) month(1-12) weekday(0-7, both 0 and 7 mean Sunday)
  • *: every value
  • */n: every n units (e.g. */15 = 0,15,30,45)
  • a-b: range from a to b (e.g. 1-5 = Mon-Fri)
  • a,b,c: a list of values (e.g. 1,15 = the 1st and 15th of the month)
Note: Next run times are calculated using your browser's local time and time zone.
Privacy & processing

All parsing and calculation happen in your browser. Your cron expression is never uploaded or stored.

크론(cron) 표현식이란 무엇인가요?
크론 표현식은 리눅스·서버 스케줄러에서 작업을 언제 실행할지 지정하는 5개 필드(분 시 일 월 요일) 문자열입니다. 예를 들어 '0 9 * * 1-5'는 평일 오전 9시마다 실행하라는 뜻입니다.
각 필드는 무엇을 의미하나요?
왼쪽부터 순서대로 분(0-59), 시(0-23), 일(1-31), 월(1-12), 요일(0-7, 0과 7은 일요일)입니다. '*'는 '모든 값', '*/n'은 'n 간격마다', 'a-b'는 '범위', 'a,b,c'는 '목록'을 의미합니다.
'*/15 * * * *'는 무슨 뜻인가요?
분 필드가 '*/15'이고 나머지가 모두 '*'이므로 매시 0분·15분·30분·45분마다, 즉 15분 간격으로 계속 실행하라는 뜻입니다.
요일 필드에서 0과 7은 왜 둘 다 일요일인가요?
크론 표준(POSIX cron)에서 요일은 0부터 6까지가 일반적이지만 일부 구현체 호환을 위해 7도 일요일로 취급합니다. 이 페이지도 0과 7을 모두 일요일로 해석합니다.
입력한 크론 표현식이 서버로 전송되나요?
아니요. 모든 해석과 다음 실행 시각 계산은 사용자의 브라우저 안에서만 이루어지며, 입력한 표현식은 서버로 전송되거나 저장되지 않습니다.
What is a cron expression?
A cron expression is a 5-field string (minute hour day month weekday) used by Linux and server schedulers to specify when a job runs. For example, '0 9 * * 1-5' means run at 9 AM every weekday.
What does each field mean?
From left to right: minute (0-59), hour (0-23), day of month (1-31), month (1-12), and day of week (0-7, where 0 and 7 both mean Sunday). '*' means "every value", '*/n' means "every n units", 'a-b' means "a range", and 'a,b,c' means "a list".
What does '*/15 * * * *' mean?
The minute field is '*/15' and everything else is '*', so it runs at minute 0, 15, 30, and 45 of every hour — in other words, every 15 minutes.
Why do both 0 and 7 mean Sunday in the weekday field?
In standard (POSIX) cron, weekdays normally run 0-6, but for compatibility with some implementations, 7 is also treated as Sunday. This page interprets both 0 and 7 as Sunday.
Is my cron expression sent to a server?
No. All parsing and next-run-time calculation happen entirely in your browser; your expression is never uploaded or stored.

안내: 본 도구는 표준 5필드 크론 표현식을 참고용으로 해석하며, 모든 처리는 브라우저 안에서만 이루어집니다. 다음 실행 시각은 브라우저의 로컬 시각을 기준으로 계산되므로 실제 서버 시간대와 다를 수 있습니다.

Note: This tool interprets standard 5-field cron expressions for reference, and all processing happens in your browser. Next run times are based on your browser's local time and may differ from your server's time zone.