cron式を構築・確認します。プリセットを選択するか5フィールドを編集し、お使いのタイムゾーンでの次回実行時刻を確認できます。すべてブラウザ内で実行されます。
Cron生成の使い方
プリセットを選択するか、5つのフィールドにcron式を入力してください。
各フィールドにラベルが付き、編集しながら検証されます。
ローカルタイムゾーンで計算された次回実行時刻を確認してください。
A cron expression is a compact string of five fields that tells a scheduler when to run a task: minute, hour, day of month, month and day of week. It is powerful but easy to get wrong, and a misplaced asterisk can mean a job fires every minute instead of once a day.
Start from a common preset (every hour, every day at midnight, every Monday at 9 AM) or build a custom expression field by field, with each field labeled and validated as you type.
Crucially, it previews the next five run times in your browser's local time zone, so you can confirm the schedule actually does what you intended before you deploy it.
Each field accepts more than a single value: an asterisk means every value, a list like MON,WED,FRI picks several, a range like MON-FRI spans days, and a step like */15 in the minute field runs at 0, 15, 30 and 45 past the hour.
The output works with standard cron on Linux and macOS, crontab, AWS EventBridge, GitHub Actions schedules and most job-scheduling libraries.
One classic trap is setting both day-of-month and day-of-week: standard cron then runs when either matches, not both, so a job can fire more often than expected. Leaving one of the two as an asterisk avoids the surprise.
This tool targets standard five-field cron, so platform extensions like a seconds field or @reboot are not produced here. Remember too that the job runs in the executing server's time zone, which may differ from the local preview.
よくある質問
順番に:分、時間、日(月内)、月、曜日(週内)です。アスタリスクはすべての値を意味するため、* * * * *は毎分実行されます。
分フィールドにステップ値を使用してください:*/15 * * * *は毎時0、15、30、45分に実行されます。
0〜6の数値(日曜が0、7も日曜を意味します)またはMONのような3文字の名前です。範囲(MON-FRI)とリスト(MON,WED,FRI)も使用できます。
月内の日と週内の曜日の両方が設定されている場合、標準のcronはどちらかがマッチしたときに実行されます。予期しない動作を避けるには一方を*にしてください。
このジェネレーターは標準の5フィールドcronを対象としています。一部のプラットフォームが追加する秒フィールドや@rebootなどの拡張は生成されません。
プレビューはブラウザのローカルタイムゾーンでの次回実行を表示します。ジョブを実行するサーバーは独自のタイムゾーンを使用するため、それが一致することを確認してください。
このツールを埋め込む
このツールをご自身のウェブサイトに追加できます。下のコードをコピーしてください。内容は自動的に最新の状態に保たれます。
<iframe src="https://monu.tools/embed/ja/cron-generator" width="100%" height="640" style="border:1px solid #e5e5e5;border-radius:12px;max-width:680px" loading="lazy" title="Monu Tools"></iframe>関連ツール