Skip to content

Commit

Permalink
Docs: more cron examples
Browse files Browse the repository at this point in the history
  • Loading branch information
mabar committed Mar 3, 2024
1 parent 52cf01e commit 84d09f8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,10 @@ Each part of expression can also use wildcard, lists, ranges and steps:
- wildcard - `* * * * *` - At every minute.
- lists - e.g. `15,30 * * * *` - At minute 15 and 30.
- ranges - e.g. `1-9 * * * *` - At every minute from 1 through 9.
- steps - e.g. `*/5 * * * *` - At every 5th minute.
- steps
- e.g. `*/5 * * * *` - At every 5th minute.
- e.g. `0-30/5 * * * *` - At every 5th minute from 0 through 30.
- combinations - e.g. `0-14,30-44 * * * *` - At every minute from 0 through 14 and every minute from 30 through 44.

You can also use macro instead of an expression:

Expand Down

0 comments on commit 84d09f8

Please sign in to comment.