Cron Expression Builder & Explainer
/* Legacy class compatibility */
.presets { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.btn-sm { padding: 5px 12px; font-size: 12px; background: rgba(255,255,255,0.2); border: none; border-radius: 4px; color: white; cursor: pointer; margin: 2px; transition: all 0.3s ease; }
.btn-sm:hover { background: rgba(255,255,255,0.3); }
code { background: #f0f0f0; padding: 2px 5px; border-radius: 3px; font-family: monospace; }
.field-explain { display: flex; gap: 8px; margin: 4px 0; }
.field-label { font-weight: bold; width: 80px; color: #333; flex-shrink: 0; }
منشئ وشرح تعبير كرون
أنشئ تعبيرات cron باستخدام القوائم المنسدلة أو اكتب تعبيرًا أوليًا لفك تشفيره.
* * * * *
الإعدادات المسبقة السريعة:
مرجع وحدات الماكرو المسماة
| ماكرو | مقابل | وصف |
|---|---|---|
@reboot |
— | تشغيل مرة واحدة عند بدء التشغيل |
@yearly / @annually |
0 0 1 1 * |
مرة واحدة في السنة، منتصف ليل 1 يناير |
@monthly |
0 0 1 * * |
مرة واحدة في الشهر، منتصف الليل الأول |
@weekly |
0 0 * * 0 |
مرة واحدة في الأسبوع، منتصف ليل الأحد |
@daily / @midnight |
0 0 * * * |
مرة واحدة في اليوم عند منتصف الليل |
@hourly |
0 * * * * |
مرة واحدة في الساعة:00 |