What is a Cron Expression?
A cron expression is a string of five or six fields that define a schedule for automated tasks. Originally developed for Unix systems, cron expressions are now used across all platforms including Linux servers, cloud services (AWS, Google Cloud, Azure), and CI/CD pipelines.
The standard format uses five fields: minute hour day-of-month month day-of-week. Some systems add a sixth field for seconds. Each field accepts specific values, ranges, or special characters like * (any), , (list), and / (step).