ஒவ்வொரு 5 நிமிடமும்
Input
*/5 * * * *
Output
ஒவ்வொரு 5 நிமிடமும் இயங்கும்
Cron expressions-ஐ plain-language timing ஆக மாற்றி, அடுத்த runs-ஐக் கணக்கிடுங்கள்.
5/6/7-field formats, timezone selection, மற்றும் copy-ready output ஆதரவு உண்டு.
Input
*/5 * * * *
Output
ஒவ்வொரு 5 நிமிடமும் இயங்கும்
Input
0 9 * * 1-5
Output
வார நாட்களில் (Mon-Fri) 09:00 மணிக்கு இயங்கும்
Input
0 30 2 * * *
Output
தினமும் 02:30:00 மணிக்கு இயங்கும்
*/10 * * * *
Recurring checks மற்றும் polling jobs க்கான பொதுவான pattern.
0 * * * *
ஒவ்வொரு hour boundary-இலும் trigger தேவைப்பட்டால் பயன்படுத்துங்கள்.
0 9 * * 1-5
Typical business-day schedule.
0 0 * * 0
Typical weekly maintenance window.
0 0 1 * *
Common monthly batch schedule.
0 0 1 1 *
Annual rollover tasks க்கு பயனுள்ளதாகும்.
5 fields (minute hour day month weekday) மூலம் தொடங்குங்கள். உங்கள் expression-இல் seconds இருந்தால் 6 fields க்கு மாறுங்கள்.
இது standard syntax (`*`, `/`, `-`, `,`) ஆதரிக்கிறது. `L`, `W`, `#`, `?` போன்ற implementation-dependent tokens க்கு warning காட்டும்.
ஆம். Timezone support உடன் அடுத்த N runs (5/10/20) கணக்கிட்டு காட்டும்.