https://github.com/mathcale/what-the-cron
Simple CLI tool to parse Cron expressions into human-readable descriptions and show next execution time
https://github.com/mathcale/what-the-cron
Last synced: 5 months ago
JSON representation
Simple CLI tool to parse Cron expressions into human-readable descriptions and show next execution time
- Host: GitHub
- URL: https://github.com/mathcale/what-the-cron
- Owner: mathcale
- Created: 2025-09-24T21:29:42.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-09-24T22:30:26.000Z (6 months ago)
- Last Synced: 2025-09-25T00:18:51.819Z (6 months ago)
- Language: Go
- Size: 6.84 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# What The Cron?
A simple Go CLI tool to parse Cron expressions into human-readable descriptions and show the next execution time.
## Usage
```sh
what-the-cron ""
```
### Example
```sh
./bin/what-the-cron "*/5 * * * *"
```
Output:
```plaintext
At every 5th minute
Next execution: 2025-09-24 18:25:00
```
## Installing
```sh
go install github.com/mathcale/what-the-cron@v1.0.0
```
## Building
Just run:
```sh
make
```
To build the binary at `bin/what-the-cron`.