mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-28 20:11:19 +08:00
cb402ec669
Co-authored-by: Harshavardhan <harshath3018@gmail.com>
345 B
345 B
retry
Repeat command until it succeeds or a criterion is met. More information: https://manned.org/retry.
- Retry a command until it succeeds:
retry {{command}}
- Retry a command every n seconds until it succeeds:
retry {{[-d|--delay]}} {{n}} {{command}}
- Give up after n attempts:
retry {{[-t|--times]}} {{n}} {{command}}