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 Expression Builder & Explainer
בנה ביטויי cron עם תפריטים נפתחים או הקלד ביטוי גולמי כדי לפענח אותו.
* * * * *
הגדרות מהירות מראש:
בשם מאקרו Reference
| מאקרו | שווה ערך | תֵאוּר |
|---|---|---|
@reboot |
— | הפעל פעם אחת באתחול |
@yearly / @annually |
0 0 1 1 * |
פעם בשנה, חצות 1 בינואר |
@monthly |
0 0 1 * * |
פעם בחודש, ה-1 בחצות |
@weekly |
0 0 * * 0 |
פעם בשבוע, יום ראשון בחצות |
@daily / @midnight |
0 0 * * * |
פעם ביום בחצות |
@hourly |
0 * * * * |
פעם בשעה, בשעה:00 |