2016-01-15 18:48:03 +00:00
|
|
|
# Generating Man Pages For Your Own cobra.Command
|
|
|
|
|
|
|
|
Generating man pages from a cobra command is incredibly easy. An example is as follows:
|
|
|
|
|
|
|
|
```go
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/spf13/cobra"
|
2016-03-01 00:51:26 +00:00
|
|
|
"github.com/spf13/cobra/doc"
|
2016-01-15 18:48:03 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
cmd := &cobra.Command{
|
|
|
|
Use: "test",
|
|
|
|
Short: "my test program",
|
|
|
|
}
|
|
|
|
header := &cobra.GenManHeader{
|
|
|
|
Title: "MINE",
|
|
|
|
Section: "3",
|
|
|
|
}
|
2016-03-01 00:51:26 +00:00
|
|
|
doc.GenManTree(cmd, header, "/tmp")
|
2016-01-15 18:48:03 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
That will get you a man page `/tmp/test.1`
|