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
Erstellen Sie Cron-Ausdrücke mit Dropdown-Listen oder geben Sie einen Rohausdruck ein, um ihn zu dekodieren.
* * * * *
Schnellvoreinstellungen:
Referenz zu benannten Makros
| Makro | Äquivalent | Beschreibung |
|---|---|---|
@reboot |
— | Einmal beim Start ausführen |
@yearly / @annually |
0 0 1 1 * |
Einmal im Jahr, 1. Januar um Mitternacht |
@monthly |
0 0 1 * * |
Einmal im Monat, 1. Mitternacht |
@weekly |
0 0 * * 0 |
Einmal pro Woche, Sonntag um Mitternacht |
@daily / @midnight |
0 0 * * * |
Einmal am Tag um Mitternacht |
@hourly |
0 * * * * |
Einmal pro Stunde, um :00 |