RevealTheme logo

Cron 표현식 빌더

cron 스케줄 표현식을 시각적으로 만듭니다. 다음 실행 시각들과 대조하여 테스트해 보세요.

0 * * * *
자주 쓰는 프리셋

이 도구 사용 방법

  1. 1

    Type a value into each of the five fields: Minute, Hour, Day (of month), Month, and DOW (day of week).

  2. 2

    Use cron syntax inside any field: * for every value, a number like 9, a range like 1-5, a step like */15, or a list like 1,15.

  3. 3

    Or click a preset such as 'Weekdays at 8am' to fill all five fields at once, then tweak as needed.

  4. 4

    Read the assembled expression in the preview box and press Copy to put it on your clipboard for crontab or your scheduler.

Cron 표현식 빌더란 무엇인가요?

cron은 유닉스 시스템에서 반복 작업을 예약하는 표준 구문입니다. 형식은 분, 시, 일, 월, 요일의 다섯 개 필드로 구성됩니다. 최신 시스템은 이를 여섯 개 필드(초 추가)로 확장합니다. 이 빌더는 구문을 외우지 않고도 표현식을 작성할 수 있도록 도와줍니다.

일반적인 사용 사례

  • Schedule a nightly database backup to run at a quiet hour, for example 0 3 * * * for 3am every day.

  • Configure a GitHub Actions or GitLab CI workflow that runs on a cron trigger without hand-counting the fields.

  • Set up a Kubernetes CronJob or a serverless scheduled function and paste the expression into the schedule field.

  • Build a weekday-only reminder or report job, like 0 8 * * 1-5 for 8am Monday through Friday.

  • Create a high-frequency polling task such as */5 * * * * to check a queue or endpoint every five minutes.

  • Generate a monthly billing or cleanup expression like 0 0 1 * * that fires at midnight on the first of each month.

자주 묻는 질문

'*/5 * * * *'는 무슨 의미인가요?
매 5분마다, 모든 시각, 모든 날을 의미합니다. '*/N' 구문은 '이 필드의 N 단위마다'를 뜻합니다.
평일에만 실행하려면 어떻게 하나요?
'0 9 * * 1-5'를 사용하세요. 월요일부터 금요일까지 오전 9시에 실행됩니다.

관련 도구