aboutsummaryrefslogtreecommitdiff
path: root/cmd-list-commands.c
diff options
context:
space:
mode:
Diffstat (limited to 'cmd-list-commands.c')
-rw-r--r--cmd-list-commands.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/cmd-list-commands.c b/cmd-list-commands.c
index 2ebc206e..261acefb 100644
--- a/cmd-list-commands.c
+++ b/cmd-list-commands.c
@@ -42,8 +42,15 @@ cmd_list_commands_exec(unused struct cmd *self, struct cmd_ctx *ctx)
{
const struct cmd_entry **entryp;
- for (entryp = cmd_table; *entryp != NULL; entryp++)
- ctx->print(ctx, "%s %s", (*entryp)->name, (*entryp)->usage);
+ for (entryp = cmd_table; *entryp != NULL; entryp++) {
+ if ((*entryp)->alias != NULL) {
+ ctx->print(ctx, "%s (%s) %s", (*entryp)->name,
+ (*entryp)->alias, (*entryp)->usage);
+ } else {
+ ctx->print(ctx, "%s %s", (*entryp)->name,
+ (*entryp)->usage);
+ }
+ }
return (CMD_RETURN_NORMAL);
}