Cron वर्णनकर्ता (मानव-पठनीय समय)

Cron expressions को plain-language timing में बदलें और upcoming runs calculate करें।

5/6/7-field formats, timezone selection, और copy-ready output supported हैं।

उपयोग कैसे करें

  1. Cron expression दर्ज करें या कोई example chip चुनें।
  2. Format (5/6/7 fields) और timezone की पुष्टि करें।
  3. Description और अगले N runs जाँचें, फिर copy/share करें।

नमूना

हर 5 मिनट

इनपुट

*/5 * * * *

आउटपुट

हर 5 मिनट पर चलता है

Weekdays पर 09:00

इनपुट

0 9 * * 1-5

आउटपुट

Weekdays (Mon-Fri) पर 09:00 बजे चलता है

Seconds सहित (daily at 02:30:00)

इनपुट

0 30 2 * * *

आउटपुट

रोज़ 02:30:00 पर चलता है

सामान्य Cron उदाहरण

हर 10 मिनट

*/10 * * * *

Recurring checks और polling jobs का सामान्य pattern।

हर घंटे minute 0 पर

0 * * * *

जब exact hour boundary पर hourly trigger चाहिए।

Weekdays पर 09:00

0 9 * * 1-5

Typical business-day schedule।

हर Sunday 00:00

0 0 * * 0

Typical weekly maintenance window।

हर महीने day 1 पर 00:00

0 0 1 * *

Common monthly batch schedule।

हर Jan 1st 00:00

0 0 1 1 *

Annual rollover tasks के लिए उपयोगी।

समर्थित सिंटैक्स और नोट्स

  • Supported standard syntax में `*`, `/`, `-`, `,`, ranges, और step values शामिल हैं।
  • Implementation-dependent tokens (`L`, `W`, `#`, `?`) हर environment में समान रूप से interpret नहीं हो सकते।
  • Timezone और DST differences के कारण displayed run times actual runtime behavior से अलग हो सकती हैं।

अक्सर पूछे जाने वाले प्रश्न

मुझे 5 fields उपयोग करनी चाहिए या 6?

5 fields (minute hour day month weekday) से शुरू करें। यदि expression में seconds शामिल हैं, तो 6 fields चुनें।

क्या यह हर cron syntax support करती है?

यह standard syntax (`*`, `/`, `-`, `,`) support करती है। `L`, `W`, `#`, `?` जैसे implementation-dependent tokens के लिए warning दिखाती है।

क्या यह next run times दिखा सकती है?

हाँ। Timezone support के साथ अगले N runs (5/10/20) calculate करके दिखाती है।