--- obj: application repo: https://github.com/demoray/retry-cli rev: 2025-01-28 --- # retry-cli retry is a command line tool written in Rust intended to automatically re-run failed commands with a user configurable delay between tries. ## Usage Usage: `retry [OPTIONS] ...` | Option | Description | | ------------------------------- | -------------------------------------------------------------- | | `--attempts ` | Amount of retries (default: `3`) | | `--min-duration ` | minimum duration (default: `10ms`) | | `--max-duration ` | maximum duration | | `--jitter ` | amount of randomization to add to the backoff (default: `0.3`) | | `--factor ` | backoff factor (default: `2`) |