From c45b8bd6acdee91c8c1696dc7738cfc9a07784c8 Mon Sep 17 00:00:00 2001 From: chrislu Date: Thu, 13 Mar 2025 09:11:16 -0700 Subject: [PATCH] add more help message fix https://github.com/seaweedfs/seaweedfs/issues/6625 --- weed/shell/shell_liner.go | 1 + 1 file changed, 1 insertion(+) diff --git a/weed/shell/shell_liner.go b/weed/shell/shell_liner.go index 1a4cabad8..00884700b 100644 --- a/weed/shell/shell_liner.go +++ b/weed/shell/shell_liner.go @@ -154,6 +154,7 @@ func printHelp(cmds []string) { for _, c := range Commands { if strings.ToLower(c.Name()) == cmd { fmt.Printf(" %s\t# %s\n", c.Name(), c.Help()) + fmt.Printf("use \"%s -h\" for more details\n", c.Name()) } } }