Cronスケジュール式をビジュアルに生成。
A cron expression is a string that describes a schedule using five fields: minute, hour, day, month, and weekday. It's used to automate tasks in Unix-like operating systems.
Set the minute field to '0', hour to '3', day to '*', month to '*', and weekday to '*'. This creates the expression '0 3 * * *' for daily execution at 3 AM.
The asterisk is a wildcard that represents 'every' possible value for that field. For example, in the hour field, * means every hour of the day.
Yes, set the weekday field to 1-5 (Monday-Friday) and leave other fields as needed. For example '0 9 * * 1-5' runs at 9 AM on weekdays.
Use our preview feature to see the next 5 execution times based on your expression, or test it in your actual system with a simple notification task.