breakup v2 documentation

This commit is contained in:
Hayden
2022-08-14 15:55:31 -08:00
parent 5361b381b8
commit cbe642e806
17 changed files with 1657 additions and 1704 deletions

View File

@@ -0,0 +1,47 @@
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
```