⌛ A Rust UNIX system tool that randomly delays another program execution
https://git.forestier.app/HorlogeSkynet/delayr
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
4 weeks ago | |
---|---|---|
src | 4 weeks ago | |
.gitignore | 1 year ago | |
Cargo.lock | 4 weeks ago | |
Cargo.toml | 4 weeks ago | |
LICENSE | 4 weeks ago | |
README.md | 12 months ago |
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