Forrest logo
back to context overview

retry

List of commands for retry:

  • retry:tldr:1b4c7 retry: Retry a command until it succeeds.
    $ retry ${command}
    try on your machine
    explain this command
  • retry:tldr:b311e retry: Retry a command every n seconds until it succeeds.
    $ retry --delay=${n} ${command}
    try on your machine
    explain this command
  • retry:tldr:e0bb0 retry: Give up after n attempts.
    $ retry --times=${n} ${command}
    try on your machine
    explain this command
back to context overview