Retry commands on the command line without all the loops you always used!
```bash
retry --max 10 -- curl -I https://unstable.site
retry --max 10 --interval 5 -- curl -I https://unstable.site
retry --exitcode 1 -- curl -I https://unstable.site
retry --quiet -- curl -I https://unstable.site ```
cargo install retry-cmd