cwrap

Crates.iocwrap
lib.rscwrap
version0.2.2
sourcesrc
created_at2023-02-05 20:55:41.43009
updated_at2024-12-01 20:42:14.169719
descriptionThis is a binary that can be used to wrap something that is run via crontab. This will suppress failure (and success)output per specifications on the command-line.
homepagehttps://github.com/crustymonkey/rust-cwrap
repositoryhttps://github.com/crustymonkey/rust-cwrap
max_upload_size
id777383
size75,035
Jay Deiman (crustymonkey)

documentation

README

rust-cwrap

A rust version of cron-wrap

IMPORTANT!

Version 0.2.0 is a breaking upgrade. You will have to remove all previous state files you have on disk. Replacing the cwrap binary with a 0.2.x binary without removing state files will cause a crash (by design). The state on disk has changed between versions.

About

This is mostly the same implementation as cron-wrap, but without the SMTP options. Those may be added later, but for now, this should be fully usable for most cases.

See cwrap --help for all of the various options here.

An important note about CLI parsing: If you have options for your command, you must terminate the options for cwrap with a --. For example, if you were going to run grep -R something /path/to/dir/* and you wanted to set a cwrap option like --num-fails, you would do it like this:

cwrap --num-fails 3 -- grep -R something /path/to/dir

Unfortunately, clap will gobble up anything that looks like an option no matter where it is, unless the options are terminated.

Commit count: 29

cargo fmt