urfave-cli/docs/v2/examples/subcommands-categories.md

55 lines
641 B
Markdown
Raw Normal View History

2022-08-15 00:11:56 +00:00
---
tags:
- v2
search:
boost: 2
---
2022-08-14 23:55:31 +00:00
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.:
```go
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
```