summaryrefslogtreecommitdiffstats
path: root/cli/src/cli.c
diff options
context:
space:
mode:
Diffstat (limited to 'cli/src/cli.c')
-rw-r--r--cli/src/cli.c17
1 files changed, 16 insertions, 1 deletions
diff --git a/cli/src/cli.c b/cli/src/cli.c
index 3716d2a89ca..99fe6f1612c 100644
--- a/cli/src/cli.c
+++ b/cli/src/cli.c
@@ -320,6 +320,20 @@ cli_opt_parse(char *opt, struct cli_state *state)
if (strcmp(opt, "") == 0)
return 1;
+ if (strcmp(opt, "help") == 0) {
+ cli_out(
+ " peer help - display help for peer commands\n"
+ " volume help - display help for volume commands\n"
+ " volume bitrot help - display help for volume"
+ " bitrot commands\n"
+ " volume quota help - display help for volume"
+ " quota commands\n"
+ " volume tier help - display help for volume"
+ " tier commands\n"
+ " snapshot help - display help for snapshot commands\n"
+ " global help - list global commands\n");
+ exit(0);
+ }
if (strcmp(opt, "version") == 0) {
cli_out("%s", argp_program_version);
@@ -454,7 +468,8 @@ parse_cmdline(int argc, char *argv[], struct cli_state *state)
continue;
ret = cli_opt_parse(opt, state);
if (ret == -1) {
- cli_out("unrecognized option --%s", opt);
+ cli_out("unrecognized option --%s\n", opt);
+ usage();
return ret;
} else if (ret == -2) {
return ret;