⌛ A Rust UNIX system tool that randomly delays another program execution
https://git.forestier.app/HorlogeSkynet/delayr
src | ||
.gitignore | ||
Cargo.lock | ||
Cargo.toml | ||
LICENSE | ||
README.md |
delayr
A Rust UNIX system tool that randomly delays another program execution
Build
cargo build
Usage
delayr --help
Examples
# Sleep between 1 second and 1 hour before executing
delayr 3600 -- certbot renew -n -q
# Sleep between 30 seconds and 60 seconds before executing, with informational logs
delayr -v -m 30 60 -- borg create [...]
# Sleep 10 seconds before exiting, with debugging logs
delayr -d -m 10 10
Contributing
Code format
rustup component add rustfmt
cargo fmt
Code analysis
rustup component add clippy
cargo clippy