From d888d09b6dc8b42bedec9689a09ddae2e16197cc Mon Sep 17 00:00:00 2001 From: Ophestra Date: Thu, 19 Feb 2026 13:55:05 +0900 Subject: [PATCH] cmd/mbf: explicit help command Not having this command is counterintuitive. Signed-off-by: Ophestra --- cmd/mbf/main.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/cmd/mbf/main.go b/cmd/mbf/main.go index 9828a8f..dccc1b0 100644 --- a/cmd/mbf/main.go +++ b/cmd/mbf/main.go @@ -241,6 +241,12 @@ func main() { ) } + c.Command( + "help", + "Show this help message", + func([]string) error { c.PrintHelp(); return nil }, + ) + c.MustParse(os.Args[1:], func(err error) { if cache != nil { cache.Close()