Cron expressions automated tasks schedule करने की universal language हैं — database backups, weekly reports, API polling। Cryptic दिखते हैं ("0 0 * * *") लेकिन simple rules हैं।
इस गाइड में 5-field cron syntax, common scheduling patterns, special characters देखेंगे।
Cron Expressions Generate करें — Free
Visual schedule builder।
Cron Syntax (5 Fields)
* * * * *
| | | | |
| | | | +---- Day of week (0-7)
| | | +------ Month (1-12)
| | +-------- Day of month (1-31)
| +---------- Hour (0-23)
+------------ Minute (0-59)
Special Characters
*— every value,— list (1,5,15)-— range (1-5)/— step (*/5)
Common Cron Patterns
| Schedule | Expression |
|---|---|
| Every minute | * * * * * |
| Every 5 minutes | */5 * * * * |
| Every hour | 0 * * * * |
| Daily midnight | 0 0 * * * |
| 3:30 AM daily | 30 3 * * * |
| Monday 9 AM | 0 9 * * 1 |
| Weekday 6 PM | 0 18 * * 1-5 |
| 1st of month | 0 0 1 * * |
Special Cron Strings
| String | Equivalent |
|---|---|
@yearly | 0 0 1 1 * |
@monthly | 0 0 1 * * |
@weekly | 0 0 * * 0 |
@daily | 0 0 * * * |
@hourly | 0 * * * * |
@reboot | System startup |
Common Cron Mistakes
- Time zone forget करना
- Day of week 0 vs 7
- Long-running tasks overlap
- Output redirect न करना
- PATH issues
"*/1 * * * *" "0 */1 * * *" के बजाय 60x oops।
How to Use the Tool (Step by Step)
- 1
Schedule Frequency Pick करें
Every X minutes, hourly, daily।
- 2
Specific Times Set करें
Hour, minute, day।
- 3
Generated Expression देखें
Tool cron string build करता है।
- 4
Schedule Visualize करें
Next 5-10 execution times देखें।
- 5
Copy और Test करें
Crontab में add करें।
Frequently Asked Questions
Linux में cron job कैसे add करें?+−
`crontab -e` open करता है।
Cron job logs कहाँ जाते हैं?+−
Default system mail। Output redirect करें।
क्या cron हर second jobs run कर सकता है?+−
नहीं, minimum 1 minute।
अगर server scheduled time पर down हो तो?+−
Cron missed runs skip करता है।
Time zone के According कैसे schedule करूं?+−
TZ environment variable set करें।
@reboot क्या है?+−
System boot पर once run करता है।
Cron Expressions Generate करें — Free
Visual schedule builder।
Cron Generator खोलें ->Related Guides
Cron Expression Guide
Cron expression syntax सीखें, common schedules समझें, और visual builder से cron jobs बनाएं। Free generator included।
JSON फॉर्मेटर गाइड
JSON क्या है, कैसे format करें, common errors कैसे fix करें — developers और beginners दोनों के लिए।
Regex Tester — Regular Expressions Test करें Free (2026)
Regex patterns test और debug — real-time matching, cheat sheet। Free, browser-based।