Cron 표현식을 파싱하고 스케줄링 의미를 쉬운 한국어로 설명합니다.
Drag & drop a file here, or click to browse
Field order:
Privacy: This tool runs entirely in your browser. No data is sent to our servers. We don't store, share, or have access to any of the information you process here.
* * * * *
0 9 * * 1-5
30 6 1 * *
*/15 * * * *
0 0 * * 0
A: A string of 5 fields (minute, hour, day, month, weekday) that defines when a scheduled task runs.
A: * means "every" for that field — e.g., * in the minute field means every minute.
A: The slash notation means "every N units" — */5 in minutes means every 5 minutes.
This tool runs entirely in your browser. No data is sent to our servers. We don't store, share, or have access to any of the information you process here.