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.