A simple command executor utility.
``` Command eXecutor
USAGE:
cx
FLAGS: -h, --help Prints help information -V, --version Prints version information
SUBCOMMANDS: help Prints this message or the help of the given subcommand(s) retry Retry command execution until successful. supervise Supervise command execution. ```
``` Retry command execution until successful.
USAGE: cx retry [OPTIONS] [COMMAND]...
FLAGS: -h, --help Prints help information -V, --version Prints version information
OPTIONS:
-c, --count
ARGS:
bash
$ cx retry -c 3 -i 2 -- your command that may fail && echo succeeded || echo failed
``` Supervise command execution.
USAGE: cx supervise [OPTIONS] [COMMAND]...
FLAGS: -h, --help Prints help information -V, --version Prints version information
OPTIONS:
-c, --count
ARGS:
bash
$ cx supervise -c 3 -i 2 -- echo abc