mirror of
https://github.com/kevincolyar/CronNET.git
synced 2024-12-21 20:42:38 +01:00
Fixes readme formatting.
This commit is contained in:
parent
1ee30fa704
commit
4ea20f3aba
|
@ -6,8 +6,9 @@ CronNET is a simple C# library for running tasks based on a cron schedule.
|
|||
Cron Schedules
|
||||
===============
|
||||
|
||||
CronNET supports most cron scheduling.
|
||||
CronNET supports most cron scheduling. See tests for supported formats.
|
||||
|
||||
```
|
||||
* * * * *
|
||||
┬ ┬ ┬ ┬ ┬
|
||||
│ │ │ │ │
|
||||
|
@ -17,13 +18,16 @@ CronNET supports most cron scheduling.
|
|||
│ │ └─────────────── day of month (1 - 31)
|
||||
│ └──────────────────── hour (0 - 23)
|
||||
└───────────────────────── min (0 - 59)
|
||||
```
|
||||
|
||||
```
|
||||
`* * * * *` Every minute.
|
||||
`0 * * * *` Top of every hour.
|
||||
`0,1,2 * * * *` Every hour at minutes 0, 1, and 2.
|
||||
`*/2 * * * *` Every two minutes.
|
||||
`1-55 * * * *` Every minute through the 55th minute.
|
||||
`* 1,10,20 * * *` Every 1st, 10th, and 20th hours.
|
||||
```
|
||||
|
||||
Console Example
|
||||
===============
|
||||
|
|
Loading…
Reference in New Issue
Block a user