retry

Retry a command until it succeeds or max attempts reached

brewmacoslinux
Try with needOr install directly
Source

About

Repeat a command until the command succeeds

Commands

retry

Examples

Retry a failing network command up to 5 times$ retry -m 5 curl https://example.com
Retry a command with 2-second delay between attempts$ retry -d 2 npm install
Retry a command with exponential backoff$ retry -b 2 -m 10 docker pull myimage:latest