1
0
mirror of https://github.com/rancher/rke.git synced 2025-09-15 14:40:40 +00:00
Files
rke/vendor/github.com/spf13/cobra/man_docs.md
2018-10-26 21:46:20 -07:00

434 B

Generating Man Pages For Your Own cobra.Command

Generating man pages from a cobra command is incredibly easy. An example is as follows:

package main

import (
	"github.com/spf13/cobra"
)

func main() {
	cmd := &cobra.Command{
		Use:   "test",
		Short: "my test program",
	}
	header := &cobra.GenManHeader{
		Title: "MINE",
		Section: "3",
	}
	cmd.GenManTree(header, "/tmp")
}

That will get you a man page /tmp/test.1