You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
urfave-cli/docs/v2/examples/subcommands-categories.md

641 B

tags search
v2
boost
2

For additional organization in apps that have many subcommands, you can associate a category for each command to group them together in the help output, e.g.:

package main

import (
	"log"
	"os"

	"github.com/urfave/cli/v2"
)

func main() {
	app := &cli.App{
		Commands: []*cli.Command{
			{
				Name: "noop",
			},
			{
				Name:     "add",
				Category: "template",
			},
			{
				Name:     "remove",
				Category: "template",
			},
		},
	}

	if err := app.Run(os.Args); err != nil {
		log.Fatal(err)
	}
}

Will include:

COMMANDS:
  noop

  Template actions:
    add
    remove