Skip to content
/ try Public

a cli tool to retry command

License

Notifications You must be signed in to change notification settings

trim21/try

Repository files navigation

♻️ retry

Tool to execute terminal commands with retries.

💡 Idea

$ retry --limit=3 -- curl example.com

🤼‍♂️ How to

asciicast

Usage: retry --limit=N -- command

The strategy flags
    -limit=N
        Limit creates a Strategy that limits the number of attempts that Retry will make.
        If N<=0, default value 3 will be used.

Examples:
    retry --limit=3 -- curl http://example.com