Elegant Cron Expression Output via the CLI
291
Croninfo is a CLI which provides the functionality of parsing cron expressions and rendering an output to ease with understanding the schedule of the cron expression.
The Cron syntax supported is based on the definition provided by FreeBSD.
This repository contains Docker images of releases in the GitHub repository.
Pull the docker image via:
docker pull paulmonk/croninfo:<version_tag>
Croninfo commands can then be run via:
docker run -it --rm paulmonk/croninfo:<version_tag> parse "* * * * * /usr/bin/find"
For convenience it is recommended to create the following alias in your shell configuration:
alias croninfo='docker run -it --rm paulmonk/croninfo:<version_tag>'
Commands can then be run in much the same way as the standard Python CLI:
croninfo parse "* * * * * /usr/bin/find"
Content type
Image
Digest
sha256:c767df23b…
Size
61.2 MB
Last updated
about 4 years ago
docker pull paulmonk/croninfo