Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 262 Bytes

README.md

File metadata and controls

16 lines (11 loc) · 262 Bytes

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)