3 stable releases

2.3.0 May 12, 2024
2.2.1 May 9, 2024
2.2.0 May 6, 2024

#698 in Command line utilities

Download history 108/week @ 2024-05-01 256/week @ 2024-05-08 14/week @ 2024-05-15 5/week @ 2024-05-22

383 downloads per month

GPL-3.0-or-later

110KB
2.5K SLoC

cronrunner

license: GPL v3+ GitHub Tag crates.io GitHub Actions Workflow Status

Run cron jobs manually.[^1]

cronrunner

# m h  dom mon dow   command

@reboot /usr/bin/bash ~/startup.sh

## Track disk space.
30 4 * * * echo $(date) $(df -h | grep "/dev/sda3") >> .disk-space.txt

FOO=:)
0 12 * * * echo $FOO

### Housekeeping

## Prune dangling Docker images.
@daily docker image prune --force

Installation

System-wide

$ git clone https://github.com/qrichert/cronrunner.git
$ cd cronrunner
$ make build
$ sudo make install

Through Cargo

cargo install --git https://github.com/qrichert/cronrunner.git

[^1]: cronrunner used to be a Python project, see 1.1.4.

No runtime deps