Cron एक्सप्रेशन विज़ुअली बनाएं और सत्यापित करें, अगली रन समय के साथ सादे भाषा में व्याख्या।
Cron Generator का उपयोग कैसे करें
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.
अक्सर पूछे जाने वाले सवाल
पांच फ़ील्ड: मिनट, घंटा, महीने का दिन, महीना, सप्ताह का दिन। उदाहरण के लिए "0 9 * * 1" सोमवार को सुबह 9 बजे चलता है।
यह टूल मानक 5-फ़ील्ड cron फॉर्मेट का उपयोग करता है। कुछ सिस्टम एक वैकल्पिक सेकंड फ़ील्ड का उपयोग करते हैं; अपने क्रॉन डेमन के दस्तावेज़ जांचें।
"*/5 * * * *" हर 5 मिनट में चलता है। "/" ऑपरेटर एक फ़ील्ड में चरण मान निर्दिष्ट करता है।
इस टूल को एम्बेड करें
इस टूल को अपनी वेबसाइट में जोड़ें। नीचे दिया स्निपेट कॉपी करें; यह अपने आप अपडेट रहता है।
<iframe src="https://monu.tools/embed/hi/cron-generator" width="100%" height="640" style="border:1px solid #e5e5e5;border-radius:12px;max-width:680px" loading="lazy" title="Monu Tools"></iframe>संबंधित टूल
अमान्य इनपुट के लिए स्पष्ट त्रुटि संदेशों के साथ JSON को ऑनलाइन फ़ॉर्मेट करें, सुंदर बनाएं और वैलिडेट करें.
टेक्स्ट को Base64 में एनकोड करें या Base64 को वापस टेक्स्ट में डिकोड करें. स्वचालित दिशा पहचान के साथ UTF-8 सुरक्षित.
एक साथ 5 यादृच्छिक RFC 4122 संस्करण 4 UUID जनरेट करें. इनपुट को अनदेखा किया जाता है; नए बैच के लिए फिर से चलाएं.
JSON को मिनिफाई करें फ़ाइल आकार कम करने के लिए, या इसे उचित इंडेंटेशन के साथ सुंदर बनाएं।