An open API service indexing awesome lists of open source software.

https://github.com/lastchiliarch/cronparser

Crontab parser for golang(using yacc).
https://github.com/lastchiliarch/cronparser

cron crontab-parser golang goyacc parser

Last synced: 5 months ago
JSON representation

Crontab parser for golang(using yacc).

Awesome Lists containing this project

README

          

# Cronparser
Crontab parser for golang(using yacc), you can use it to validate linux crontab etc.

# Usage

result, err := ParseCron("*/5 1-3 * JAN SAT", true)
if err != nil {
log.Println("parse error:", err)
return
}
fmt.Println(result)