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

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

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`.