diff --git a/.nojekyll b/.nojekyll new file mode 100644 index 000000000..e69de29bb diff --git a/404.html b/404.html new file mode 100644 index 000000000..7e3596328 --- /dev/null +++ b/404.html @@ -0,0 +1,116 @@ + + +
+ + + +Active Help is a framework provided by Cobra which allows a program to define messages (hints, warnings, etc) that will be printed during program usage. It aims to make it easier for your users to learn how to use your program. If configured by the program, Active Help is printed when the user triggers shell completion.
+For example,
+bash-5.1$ helm repo add [tab]
+You must choose a name for the repo you are adding.
+
+bash-5.1$ bin/helm package [tab]
+Please specify the path to the chart to package
+
+bash-5.1$ bin/helm package [tab][tab]
+bin/ internal/ scripts/ pkg/ testdata/
+
Hint: A good place to use Active Help messages is when the normal completion system does not provide any suggestions. In such cases, Active Help nicely supplements the normal shell completions to guide the user in knowing what is expected by the program.
+ + + + + + + + +Active Help is currently only supported for the following shells:
+As Active Help uses the shell completion system, the implementation of Active Help messages is done by enhancing custom dynamic completions. If you are not familiar with dynamic completions, please refer to Shell Completions.
+Adding Active Help is done through the use of the cobra.AppendActiveHelp(...)
function, where the program repeatedly adds Active Help messages to the list of completions. Keep reading for details.
Adding Active Help when completing a noun is done within the ValidArgsFunction(...)
of a command. Please notice the use of cobra.AppendActiveHelp(...)
in the following example:
cmd := &cobra.Command{
+ Use: "add [NAME] [URL]",
+ Short: "add a chart repository",
+ Args: require.ExactArgs(2),
+ RunE: func(cmd *cobra.Command, args []string) error {
+ return addRepo(args)
+ },
+ ValidArgsFunction: func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {
+ var comps []string
+ if len(args) == 0 {
+ comps = cobra.AppendActiveHelp(comps, "You must choose a name for the repo you are adding")
+ } else if len(args) == 1 {
+ comps = cobra.AppendActiveHelp(comps, "You must specify the URL for the repo you are adding")
+ } else {
+ comps = cobra.AppendActiveHelp(comps, "This command does not take any more arguments")
+ }
+ return comps, cobra.ShellCompDirectiveNoFileComp
+ },
+}
+
The example above defines the completions (none, in this specific example) as well as the Active Help messages for the helm repo add
command. It yields the following behavior:
bash-5.1$ helm repo add [tab]
+You must choose a name for the repo you are adding
+
+bash-5.1$ helm repo add grafana [tab]
+You must specify the URL for the repo you are adding
+
+bash-5.1$ helm repo add grafana https://grafana.github.io/helm-charts [tab]
+This command does not take any more arguments
+
Hint: As can be seen in the above example, a good place to use Active Help messages is when the normal completion system does not provide any suggestions. In such cases, Active Help nicely supplements the normal shell completions.
+ + + + + + + + +Providing Active Help for flags is done in the same fashion as for nouns, but using the completion function registered for the flag. For example:
+_ = cmd.RegisterFlagCompletionFunc("version", func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {
+ if len(args) != 2 {
+ return cobra.AppendActiveHelp(nil, "You must first specify the chart to install before the --version flag can be completed"), cobra.ShellCompDirectiveNoFileComp
+ }
+ return compVersionFlag(args[1], toComplete)
+ })
+
The example above prints an Active Help message when not enough information was given by the user to complete the --version
flag.
bash-5.1$ bin/helm install myrelease --version 2.0.[tab]
+You must first specify the chart to install before the --version flag can be completed
+
+bash-5.1$ bin/helm install myrelease bitnami/solr --version 2.0.[tab][tab]
+2.0.1 2.0.2 2.0.3
+
+
+
+
+
+
+
+
+You may want to allow your users to disable Active Help or choose between different levels of Active Help. It is entirely up to the program to define the type of configurability of Active Help that it wants to offer, if any. +Allowing to configure Active Help is entirely optional; you can use Active Help in your program without doing anything about Active Help configuration.
+The way to configure Active Help is to use the program’s Active Help environment
+variable. That variable is named <PROGRAM>_ACTIVE_HELP
where <PROGRAM>
is the name of your
+program in uppercase with any -
replaced by an _
. The variable should be set by the user to whatever
+Active Help configuration values are supported by the program.
For example, say helm
has chosen to support three levels for Active Help: on
, off
, local
. Then a user
+would set the desired behavior to local
by doing export HELM_ACTIVE_HELP=local
in their shell.
For simplicity, when in cmd.ValidArgsFunction(...)
or a flag’s completion function, the program should read the
+Active Help configuration using the cobra.GetActiveHelpConfig(cmd)
function and select what Active Help messages
+should or should not be added (instead of reading the environment variable directly).
For example:
+ValidArgsFunction: func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {
+ activeHelpLevel := cobra.GetActiveHelpConfig(cmd)
+
+ var comps []string
+ if len(args) == 0 {
+ if activeHelpLevel != "off" {
+ comps = cobra.AppendActiveHelp(comps, "You must choose a name for the repo you are adding")
+ }
+ } else if len(args) == 1 {
+ if activeHelpLevel != "off" {
+ comps = cobra.AppendActiveHelp(comps, "You must specify the URL for the repo you are adding")
+ }
+ } else {
+ if activeHelpLevel == "local" {
+ comps = cobra.AppendActiveHelp(comps, "This command does not take any more arguments")
+ }
+ }
+ return comps, cobra.ShellCompDirectiveNoFileComp
+},
+
Note 1: If the <PROGRAM>_ACTIVE_HELP
environment variable is set to the string “0”, Cobra will automatically disable all Active Help output (even if some output was specified by the program using the cobra.AppendActiveHelp(...)
function). Using “0” can simplify your code in situations where you want to blindly disable Active Help without having to call cobra.GetActiveHelpConfig(cmd)
explicitly.
Note 2: If a user wants to disable Active Help for every single program based on Cobra, she can set the environment variable COBRA_ACTIVE_HELP
to “0”. In this case cobra.GetActiveHelpConfig(cmd)
will return “0” no matter what the variable <PROGRAM>_ACTIVE_HELP
is set to.
Note 3: If the user does not set <PROGRAM>_ACTIVE_HELP
or COBRA_ACTIVE_HELP
(which will be a common case), the default value for the Active Help configuration returned by cobra.GetActiveHelpConfig(cmd)
will be the empty string.
Cobra provides a default completion
command for programs that wish to use it.
+When using the default completion
command, Active Help is configurable in the same
+fashion as described above using environment variables. You may wish to document this in more
+details for your users.
Debugging your Active Help code is done in the same way as debugging your dynamic completion code, which is with Cobra’s hidden __complete
command. Please refer to debugging shell completion for details.
When debugging with the __complete
command, if you want to specify different Active Help configurations, you should use the active help environment variable. That variable is named <PROGRAM>_ACTIVE_HELP
where any -
is replaced by an _
. For example, we can test deactivating some Active Help as shown below:
$ HELM_ACTIVE_HELP=1 bin/helm __complete install wordpress bitnami/h<ENTER>
+bitnami/haproxy
+bitnami/harbor
+_activeHelp_ WARNING: cannot re-use a name that is still in use
+:0
+Completion ended with directive: ShellCompDirectiveDefault
+
+$ HELM_ACTIVE_HELP=0 bin/helm __complete install wordpress bitnami/h<ENTER>
+bitnami/haproxy
+bitnami/harbor
+:0
+Completion ended with directive: ShellCompDirectiveDefault
+
+
+
+
+
+
+
+
+
+
+Please refer to Shell Completions for details.
+ + + + + + + + +For backward compatibility, Cobra still supports its legacy dynamic completion solution (described below). Unlike the ValidArgsFunction
solution, the legacy solution will only work for Bash shell-completion and not for other shells. This legacy solution can be used along-side ValidArgsFunction
and RegisterFlagCompletionFunc()
, as long as both solutions are not used for the same command. This provides a path to gradually migrate from the legacy solution to the new solution.
Note: Cobra’s default completion
command uses bash completion V2. If you are currently using Cobra’s legacy dynamic completion solution, you should not use the default completion
command but continue using your own.
The legacy solution allows you to inject bash functions into the bash completion script. Those bash functions are responsible for providing the completion choices for your own completions.
+Some code that works in kubernetes:
+const (
+ bash_completion_func = `__kubectl_parse_get()
+{
+ local kubectl_output out
+ if kubectl_output=$(kubectl get --no-headers "$1" 2>/dev/null); then
+ out=($(echo "${kubectl_output}" | awk '{print $1}'))
+ COMPREPLY=( $( compgen -W "${out[*]}" -- "$cur" ) )
+ fi
+}
+
+__kubectl_get_resource()
+{
+ if [[ ${#nouns[@]} -eq 0 ]]; then
+ return 1
+ fi
+ __kubectl_parse_get ${nouns[${#nouns[@]} -1]}
+ if [[ $? -eq 0 ]]; then
+ return 0
+ fi
+}
+
+__kubectl_custom_func() {
+ case ${last_command} in
+ kubectl_get | kubectl_describe | kubectl_delete | kubectl_stop)
+ __kubectl_get_resource
+ return
+ ;;
+ *)
+ ;;
+ esac
+}
+`)
+
And then I set that in my command definition:
+cmds := &cobra.Command{
+ Use: "kubectl",
+ Short: "kubectl controls the Kubernetes cluster manager",
+ Long: `kubectl controls the Kubernetes cluster manager.
+
+Find more information at https://github.com/GoogleCloudPlatform/kubernetes.`,
+ Run: runHelp,
+ BashCompletionFunction: bash_completion_func,
+}
+
The BashCompletionFunction
option is really only valid/useful on the root command. Doing the above will cause __kubectl_custom_func()
(__<command-use>_custom_func()
) to be called when the built in processor was unable to find a solution. In the case of kubernetes a valid command might look something like kubectl get pod [mypod]
. If you type kubectl get pod [tab][tab]
the __kubectl_customc_func()
will run because the cobra.Command only understood “kubectl” and “get.” __kubectl_custom_func()
will see that the cobra.Command is “kubectl_get” and will thus call another helper __kubectl_get_resource()
. __kubectl_get_resource
will look at the ’nouns’ collected. In our example the only noun will be pod
. So it will call __kubectl_parse_get pod
. __kubectl_parse_get
will actually call out to kubernetes and get any pods. It will then set COMPREPLY
to valid pods!
Similarly, for flags:
+ annotation := make(map[string][]string)
+ annotation[cobra.BashCompCustom] = []string{"__kubectl_get_namespaces"}
+
+ flag := &pflag.Flag{
+ Name: "namespace",
+ Usage: usage,
+ Annotations: annotation,
+ }
+ cmd.Flags().AddFlag(flag)
+
In addition add the __kubectl_get_namespaces
implementation in the BashCompletionFunction
+value, e.g.:
__kubectl_get_namespaces()
+{
+ local template
+ template="{{ range .items }}{{ .metadata.name }} {{ end }}"
+ local kubectl_out
+ if kubectl_out=$(kubectl get -o template --template="${template}" namespace 2>/dev/null); then
+ COMPREPLY=( $( compgen -W "${kubectl_out}[*]" -- "$cur" ) )
+ fi
+}
+
Please refer to Shell Completions for details.
+ + + + + + + + + + +Please refer to Shell Completions for details.
+ + + + + + + + + + +Please refer to Shell Completions for details.
+ + + + + + + + +Cobra 1.1 standardized its zsh completion support to align it with its other shell completions. Although the API was kept backwards-compatible, some small changes in behavior were introduced.
+ + + + + + + + +See further below for more details on these deprecations.
+cmd.MarkZshCompPositionalArgumentFile(pos, []string{})
is no longer needed. It is therefore deprecated and silently ignored.cmd.MarkZshCompPositionalArgumentFile(pos, glob[])
is deprecated and silently ignored.
+ValidArgsFunction
with ShellCompDirectiveFilterFileExt
.cmd.MarkZshCompPositionalArgumentWords()
is deprecated and silently ignored.
+ValidArgsFunction
.Noun completion
+Old behavior | +New behavior | +
---|---|
No file completion by default (opposite of bash) | +File completion by default; use ValidArgsFunction with ShellCompDirectiveNoFileComp to turn off file completion on a per-argument basis |
+
Completion of flag names without the - prefix having been typed |
+Flag names are only completed if the user has typed the first - |
+
cmd.MarkZshCompPositionalArgumentFile(pos, []string{}) used to turn on file completion on a per-argument position basis |
+File completion for all arguments by default; cmd.MarkZshCompPositionalArgumentFile() is deprecated and silently ignored |
+
cmd.MarkZshCompPositionalArgumentFile(pos, glob[]) used to turn on file completion with glob filtering on a per-argument position basis (zsh-specific) |
+cmd.MarkZshCompPositionalArgumentFile() is deprecated and silently ignored; use ValidArgsFunction with ShellCompDirectiveFilterFileExt for file extension filtering (not full glob filtering) |
+
cmd.MarkZshCompPositionalArgumentWords(pos, words[]) used to provide completion choices on a per-argument position basis (zsh-specific) |
+cmd.MarkZshCompPositionalArgumentWords() is deprecated and silently ignored; use ValidArgsFunction to achieve the same behavior |
+
Flag-value completion
+Old behavior | +New behavior | +
---|---|
No file completion by default (opposite of bash) | +File completion by default; use RegisterFlagCompletionFunc() with ShellCompDirectiveNoFileComp to turn off file completion |
+
cmd.MarkFlagFilename(flag, []string{}) and similar used to turn on file completion |
+File completion by default; cmd.MarkFlagFilename(flag, []string{}) no longer needed in this context and silently ignored |
+
cmd.MarkFlagFilename(flag, glob[]) used to turn on file completion with glob filtering (syntax of []string{"*.yaml", "*.yml"} incompatible with bash) |
+Will continue to work, however, support for bash syntax is added and should be used instead so as to work for all shells ([]string{"yaml", "yml"} ) |
+
cmd.MarkFlagDirname(flag) only completes directories (zsh-specific) |
+Has been added for all shells | +
Completion of a flag name does not repeat, unless flag is of type *Array or *Slice (not supported by bash) |
+Retained for zsh and added to fish |
+
Completion of a flag name does not provide the = form (unlike bash) |
+Retained for zsh and added to fish |
+
Improvements
+ValidArgsFunction
and RegisterFlagCompletionFunc()
)=
form of flagsGenerating man pages from a cobra command is incredibly easy. An example is as follows:
+package main
+
+import (
+ "log"
+
+ "github.com/spf13/cobra"
+ "github.com/spf13/cobra/doc"
+)
+
+func main() {
+ cmd := &cobra.Command{
+ Use: "test",
+ Short: "my test program",
+ }
+ header := &doc.GenManHeader{
+ Title: "MINE",
+ Section: "3",
+ }
+ err := doc.GenManTree(cmd, header, "/tmp")
+ if err != nil {
+ log.Fatal(err)
+ }
+}
+
That will get you a man page /tmp/test.3
Generating Markdown pages from a cobra command is incredibly easy. An example is as follows:
+package main
+
+import (
+ "log"
+
+ "github.com/spf13/cobra"
+ "github.com/spf13/cobra/doc"
+)
+
+func main() {
+ cmd := &cobra.Command{
+ Use: "test",
+ Short: "my test program",
+ }
+ err := doc.GenMarkdownTree(cmd, "/tmp")
+ if err != nil {
+ log.Fatal(err)
+ }
+}
+
That will get you a Markdown document /tmp/test.md
This program can actually generate docs for the kubectl command in the kubernetes project
+package main
+
+import (
+ "log"
+ "io/ioutil"
+ "os"
+
+ "k8s.io/kubernetes/pkg/kubectl/cmd"
+ cmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
+
+ "github.com/spf13/cobra/doc"
+)
+
+func main() {
+ kubectl := cmd.NewKubectlCommand(cmdutil.NewFactory(nil), os.Stdin, ioutil.Discard, ioutil.Discard)
+ err := doc.GenMarkdownTree(kubectl, "./")
+ if err != nil {
+ log.Fatal(err)
+ }
+}
+
This will generate a whole series of files, one for each command in the tree, in the directory specified (in this case “./”)
+ + + + + + + + +You may wish to have more control over the output, or only generate for a single command, instead of the entire command tree. If this is the case you may prefer to GenMarkdown
instead of GenMarkdownTree
out := new(bytes.Buffer)
+ err := doc.GenMarkdown(cmd, out)
+ if err != nil {
+ log.Fatal(err)
+ }
+
This will write the markdown doc for ONLY “cmd” into the out, buffer.
+ + + + + + + + +Both GenMarkdown
and GenMarkdownTree
have alternate versions with callbacks to get some control of the output:
func GenMarkdownTreeCustom(cmd *Command, dir string, filePrepender, linkHandler func(string) string) error {
+ //...
+}
+
func GenMarkdownCustom(cmd *Command, out *bytes.Buffer, linkHandler func(string) string) error {
+ //...
+}
+
The filePrepender
will prepend the return value given the full filepath to the rendered Markdown file. A common use case is to add front matter to use the generated documentation with Hugo:
const fmTemplate = `---
+date: %s
+title: "%s"
+slug: %s
+url: %s
+---
+`
+
+filePrepender := func(filename string) string {
+ now := time.Now().Format(time.RFC3339)
+ name := filepath.Base(filename)
+ base := strings.TrimSuffix(name, path.Ext(name))
+ url := "/commands/" + strings.ToLower(base) + "/"
+ return fmt.Sprintf(fmTemplate, now, strings.Replace(base, "_", " ", -1), base, url)
+}
+
The linkHandler
can be used to customize the rendered internal links to the commands, given a filename:
linkHandler := func(name string) string {
+ base := strings.TrimSuffix(name, path.Ext(name))
+ return "/commands/" + strings.ToLower(base) + "/"
+}
+
Generating ReST pages from a cobra command is incredibly easy. An example is as follows:
+package main
+
+import (
+ "log"
+
+ "github.com/spf13/cobra"
+ "github.com/spf13/cobra/doc"
+)
+
+func main() {
+ cmd := &cobra.Command{
+ Use: "test",
+ Short: "my test program",
+ }
+ err := doc.GenReSTTree(cmd, "/tmp")
+ if err != nil {
+ log.Fatal(err)
+ }
+}
+
That will get you a ReST document /tmp/test.rst
This program can actually generate docs for the kubectl command in the kubernetes project
+package main
+
+import (
+ "log"
+ "io/ioutil"
+ "os"
+
+ "k8s.io/kubernetes/pkg/kubectl/cmd"
+ cmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
+
+ "github.com/spf13/cobra/doc"
+)
+
+func main() {
+ kubectl := cmd.NewKubectlCommand(cmdutil.NewFactory(nil), os.Stdin, ioutil.Discard, ioutil.Discard)
+ err := doc.GenReSTTree(kubectl, "./")
+ if err != nil {
+ log.Fatal(err)
+ }
+}
+
This will generate a whole series of files, one for each command in the tree, in the directory specified (in this case “./”)
+ + + + + + + + +You may wish to have more control over the output, or only generate for a single command, instead of the entire command tree. If this is the case you may prefer to GenReST
instead of GenReSTTree
out := new(bytes.Buffer)
+ err := doc.GenReST(cmd, out)
+ if err != nil {
+ log.Fatal(err)
+ }
+
This will write the ReST doc for ONLY “cmd” into the out, buffer.
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Both GenReST
and GenReSTTree
have alternate versions with callbacks to get some control of the output:
func GenReSTTreeCustom(cmd *Command, dir string, filePrepender func(string) string, linkHandler func(string, string) string) error {
+ //...
+}
+
func GenReSTCustom(cmd *Command, out *bytes.Buffer, linkHandler func(string, string) string) error {
+ //...
+}
+
The filePrepender
will prepend the return value given the full filepath to the rendered ReST file. A common use case is to add front matter to use the generated documentation with Hugo:
const fmTemplate = `---
+date: %s
+title: "%s"
+slug: %s
+url: %s
+---
+`
+filePrepender := func(filename string) string {
+ now := time.Now().Format(time.RFC3339)
+ name := filepath.Base(filename)
+ base := strings.TrimSuffix(name, path.Ext(name))
+ url := "/commands/" + strings.ToLower(base) + "/"
+ return fmt.Sprintf(fmTemplate, now, strings.Replace(base, "_", " ", -1), base, url)
+}
+
The linkHandler
can be used to customize the rendered links to the commands, given a command name and reference. This is useful while converting rst to html or while generating documentation with tools like Sphinx where :ref:
is used:
// Sphinx cross-referencing format
+linkHandler := func(name, ref string) string {
+ return fmt.Sprintf(":ref:`%s <%s>`", name, ref)
+}
+
Generating yaml files from a cobra command is incredibly easy. An example is as follows:
+package main
+
+import (
+ "log"
+
+ "github.com/spf13/cobra"
+ "github.com/spf13/cobra/doc"
+)
+
+func main() {
+ cmd := &cobra.Command{
+ Use: "test",
+ Short: "my test program",
+ }
+ err := doc.GenYamlTree(cmd, "/tmp")
+ if err != nil {
+ log.Fatal(err)
+ }
+}
+
That will get you a Yaml document /tmp/test.yaml
This program can actually generate docs for the kubectl command in the kubernetes project
+package main
+
+import (
+ "io/ioutil"
+ "log"
+ "os"
+
+ "k8s.io/kubernetes/pkg/kubectl/cmd"
+ cmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
+
+ "github.com/spf13/cobra/doc"
+)
+
+func main() {
+ kubectl := cmd.NewKubectlCommand(cmdutil.NewFactory(nil), os.Stdin, ioutil.Discard, ioutil.Discard)
+ err := doc.GenYamlTree(kubectl, "./")
+ if err != nil {
+ log.Fatal(err)
+ }
+}
+
This will generate a whole series of files, one for each command in the tree, in the directory specified (in this case “./”)
+ + + + + + + + +You may wish to have more control over the output, or only generate for a single command, instead of the entire command tree. If this is the case you may prefer to GenYaml
instead of GenYamlTree
out := new(bytes.Buffer)
+ doc.GenYaml(cmd, out)
+
This will write the yaml doc for ONLY “cmd” into the out, buffer.
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Both GenYaml
and GenYamlTree
have alternate versions with callbacks to get some control of the output:
func GenYamlTreeCustom(cmd *Command, dir string, filePrepender, linkHandler func(string) string) error {
+ //...
+}
+
func GenYamlCustom(cmd *Command, out *bytes.Buffer, linkHandler func(string) string) error {
+ //...
+}
+
The filePrepender
will prepend the return value given the full filepath to the rendered Yaml file. A common use case is to add front matter to use the generated documentation with Hugo:
const fmTemplate = `---
+date: %s
+title: "%s"
+slug: %s
+url: %s
+---
+`
+
+filePrepender := func(filename string) string {
+ now := time.Now().Format(time.RFC3339)
+ name := filepath.Base(filename)
+ base := strings.TrimSuffix(name, path.Ext(name))
+ url := "/commands/" + strings.ToLower(base) + "/"
+ return fmt.Sprintf(fmTemplate, now, strings.Replace(base, "_", " ", -1), base, url)
+}
+
The linkHandler
can be used to customize the rendered internal links to the commands, given a filename:
linkHandler := func(name string) string {
+ base := strings.TrimSuffix(name, path.Ext(name))
+ return "/commands/" + strings.ToLower(base) + "/"
+}
+
upctl
)While you are welcome to provide your own organization, typically a Cobra-based +application will follow the following organizational structure:
+ ▾ appName/
+ ▾ cmd/
+ add.go
+ your.go
+ commands.go
+ here.go
+ main.go
+
In a Cobra app, typically the main.go file is very bare. It serves one purpose: initializing Cobra.
+package main
+
+import (
+ "{pathToYourApp}/cmd"
+)
+
+func main() {
+ cmd.Execute()
+}
+
Cobra-CLI is its own program that will create your application and add any commands you want. +It’s the easiest way to incorporate Cobra into your application.
+For complete details on using the Cobra generator, please refer to The Cobra-CLI Generator README
+ + + + + + + + +To manually implement Cobra you need to create a bare main.go file and a rootCmd file. +You will optionally provide additional commands as you see fit.
+ + + + + + + + +Cobra doesn’t require any special constructors. Simply create your commands.
+Ideally you place this in app/cmd/root.go:
+var rootCmd = &cobra.Command{
+ Use: "hugo",
+ Short: "Hugo is a very fast static site generator",
+ Long: `A Fast and Flexible Static Site Generator built with
+ love by spf13 and friends in Go.
+ Complete documentation is available at https://gohugo.io/documentation/`,
+ Run: func(cmd *cobra.Command, args []string) {
+ // Do Stuff Here
+ },
+}
+
+func Execute() {
+ if err := rootCmd.Execute(); err != nil {
+ fmt.Fprintln(os.Stderr, err)
+ os.Exit(1)
+ }
+}
+
You will additionally define flags and handle configuration in your init() function.
+For example cmd/root.go:
+package cmd
+
+import (
+ "fmt"
+ "os"
+
+ "github.com/spf13/cobra"
+ "github.com/spf13/viper"
+)
+
+var (
+ // Used for flags.
+ cfgFile string
+ userLicense string
+
+ rootCmd = &cobra.Command{
+ Use: "cobra-cli",
+ Short: "A generator for Cobra based Applications",
+ Long: `Cobra is a CLI library for Go that empowers applications.
+This application is a tool to generate the needed files
+to quickly create a Cobra application.`,
+ }
+)
+
+// Execute executes the root command.
+func Execute() error {
+ return rootCmd.Execute()
+}
+
+func init() {
+ cobra.OnInitialize(initConfig)
+
+ rootCmd.PersistentFlags().StringVar(&cfgFile, "config", "", "config file (default is $HOME/.cobra.yaml)")
+ rootCmd.PersistentFlags().StringP("author", "a", "YOUR NAME", "author name for copyright attribution")
+ rootCmd.PersistentFlags().StringVarP(&userLicense, "license", "l", "", "name of license for the project")
+ rootCmd.PersistentFlags().Bool("viper", true, "use Viper for configuration")
+ viper.BindPFlag("author", rootCmd.PersistentFlags().Lookup("author"))
+ viper.BindPFlag("useViper", rootCmd.PersistentFlags().Lookup("viper"))
+ viper.SetDefault("author", "NAME HERE <EMAIL ADDRESS>")
+ viper.SetDefault("license", "apache")
+
+ rootCmd.AddCommand(addCmd)
+ rootCmd.AddCommand(initCmd)
+}
+
+func initConfig() {
+ if cfgFile != "" {
+ // Use config file from the flag.
+ viper.SetConfigFile(cfgFile)
+ } else {
+ // Find home directory.
+ home, err := os.UserHomeDir()
+ cobra.CheckErr(err)
+
+ // Search config in home directory with name ".cobra" (without extension).
+ viper.AddConfigPath(home)
+ viper.SetConfigType("yaml")
+ viper.SetConfigName(".cobra")
+ }
+
+ viper.AutomaticEnv()
+
+ if err := viper.ReadInConfig(); err == nil {
+ fmt.Println("Using config file:", viper.ConfigFileUsed())
+ }
+}
+
With the root command you need to have your main function execute it. +Execute should be run on the root for clarity, though it can be called on any command.
+In a Cobra app, typically the main.go file is very bare. It serves one purpose: to initialize Cobra.
+package main
+
+import (
+ "{pathToYourApp}/cmd"
+)
+
+func main() {
+ cmd.Execute()
+}
+
Additional commands can be defined and typically are each given their own file +inside of the cmd/ directory.
+If you wanted to create a version command you would create cmd/version.go and +populate it with the following:
+package cmd
+
+import (
+ "fmt"
+
+ "github.com/spf13/cobra"
+)
+
+func init() {
+ rootCmd.AddCommand(versionCmd)
+}
+
+var versionCmd = &cobra.Command{
+ Use: "version",
+ Short: "Print the version number of Hugo",
+ Long: `All software has versions. This is Hugo's`,
+ Run: func(cmd *cobra.Command, args []string) {
+ fmt.Println("Hugo Static Site Generator v0.9 -- HEAD")
+ },
+}
+
A command may have subcommands which in turn may have other subcommands. This is achieved by using
+AddCommand
. In some cases, especially in larger applications, each subcommand may be defined in
+its own go package.
The suggested approach is for the parent command to use AddCommand
to add its most immediate
+subcommands. For example, consider the following directory structure:
├── cmd
+│ ├── root.go
+│ └── sub1
+│ ├── sub1.go
+│ └── sub2
+│ ├── leafA.go
+│ ├── leafB.go
+│ └── sub2.go
+└── main.go
+
In this case:
+init
function of root.go
adds the command defined in sub1.go
to the root command.init
function of sub1.go
adds the command defined in sub2.go
to the sub1 command.init
function of sub2.go
adds the commands defined in leafA.go
and leafB.go
to the
+sub2 command.This approach ensures the subcommands are always included at compile time while avoiding cyclic +references.
+ + + + + + + + +If you wish to return an error to the caller of a command, RunE
can be used.
package cmd
+
+import (
+ "fmt"
+
+ "github.com/spf13/cobra"
+)
+
+func init() {
+ rootCmd.AddCommand(tryCmd)
+}
+
+var tryCmd = &cobra.Command{
+ Use: "try",
+ Short: "Try and possibly fail at something",
+ RunE: func(cmd *cobra.Command, args []string) error {
+ if err := someFunc(); err != nil {
+ return err
+ }
+ return nil
+ },
+}
+
The error can then be caught at the execute function call.
+ + + + + + + + +Flags provide modifiers to control how the action command operates.
+ + + + + + + + +Since the flags are defined and used in different locations, we need to +define a variable outside with the correct scope to assign the flag to +work with.
+var Verbose bool
+var Source string
+
There are two different approaches to assign a flag.
+ + + + + + + + +A flag can be ‘persistent’, meaning that this flag will be available to the +command it’s assigned to as well as every command under that command. For +global flags, assign a flag as a persistent flag on the root.
+rootCmd.PersistentFlags().BoolVarP(&Verbose, "verbose", "v", false, "verbose output")
+
A flag can also be assigned locally, which will only apply to that specific command.
+localCmd.Flags().StringVarP(&Source, "source", "s", "", "Source directory to read from")
+
By default, Cobra only parses local flags on the target command, and any local flags on
+parent commands are ignored. By enabling Command.TraverseChildren
, Cobra will
+parse local flags on each command before executing the target command.
command := cobra.Command{
+ Use: "print [OPTIONS] [COMMANDS]",
+ TraverseChildren: true,
+}
+
You can also bind your flags with viper:
+var author string
+
+func init() {
+ rootCmd.PersistentFlags().StringVar(&author, "author", "YOUR NAME", "Author name for copyright attribution")
+ viper.BindPFlag("author", rootCmd.PersistentFlags().Lookup("author"))
+}
+
In this example, the persistent flag author
is bound with viper
.
+Note: the variable author
will not be set to the value from config,
+when the --author
flag is provided by user.
More in viper documentation.
+ + + + + + + + +Flags are optional by default. If instead you wish your command to report an error +when a flag has not been set, mark it as required:
+rootCmd.Flags().StringVarP(&Region, "region", "r", "", "AWS region (required)")
+rootCmd.MarkFlagRequired("region")
+
Or, for persistent flags:
+rootCmd.PersistentFlags().StringVarP(&Region, "region", "r", "", "AWS region (required)")
+rootCmd.MarkPersistentFlagRequired("region")
+
If you have different flags that must be provided together (e.g. if they provide the --username
flag they MUST provide the --password
flag as well) then
+Cobra can enforce that requirement:
rootCmd.Flags().StringVarP(&u, "username", "u", "", "Username (required if password is set)")
+rootCmd.Flags().StringVarP(&pw, "password", "p", "", "Password (required if username is set)")
+rootCmd.MarkFlagsRequiredTogether("username", "password")
+
You can also prevent different flags from being provided together if they represent mutually
+exclusive options such as specifying an output format as either --json
or --yaml
but never both:
rootCmd.Flags().BoolVar(&ofJson, "json", false, "Output in JSON")
+rootCmd.Flags().BoolVar(&ofYaml, "yaml", false, "Output in YAML")
+rootCmd.MarkFlagsMutuallyExclusive("json", "yaml")
+
If you want to require at least one flag from a group to be present, you can use MarkFlagsOneRequired
.
+This can be combined with MarkFlagsMutuallyExclusive
to enforce exactly one flag from a given group:
rootCmd.Flags().BoolVar(&ofJson, "json", false, "Output in JSON")
+rootCmd.Flags().BoolVar(&ofYaml, "yaml", false, "Output in YAML")
+rootCmd.MarkFlagsOneRequired("json", "yaml")
+rootCmd.MarkFlagsMutuallyExclusive("json", "yaml")
+
In these cases:
+Validation of positional arguments can be specified using the Args
field of Command
.
+The following validators are built in:
NoArgs
- report an error if there are any positional args.ArbitraryArgs
- accept any number of args.MinimumNArgs(int)
- report an error if less than N positional args are provided.MaximumNArgs(int)
- report an error if more than N positional args are provided.ExactArgs(int)
- report an error if there are not exactly N positional args.RangeArgs(min, max)
- report an error if the number of args is not between min
and max
.OnlyValidArgs
- report an error if there are any positional args not specified in the ValidArgs
field of Command
, which can optionally be set to a list of valid values for positional args.If Args
is undefined or nil
, it defaults to ArbitraryArgs
.
Moreover, MatchAll(pargs ...PositionalArgs)
enables combining existing checks with arbitrary other checks.
+For instance, if you want to report an error if there are not exactly N positional args OR if there are any positional
+args that are not in the ValidArgs
field of Command
, you can call MatchAll
on ExactArgs
and OnlyValidArgs
, as
+shown below:
var cmd = &cobra.Command{
+ Short: "hello",
+ Args: cobra.MatchAll(cobra.ExactArgs(2), cobra.OnlyValidArgs),
+ Run: func(cmd *cobra.Command, args []string) {
+ fmt.Println("Hello, World!")
+ },
+}
+
It is possible to set any custom validator that satisfies func(cmd *cobra.Command, args []string) error
.
+For example:
var cmd = &cobra.Command{
+ Short: "hello",
+ Args: func(cmd *cobra.Command, args []string) error {
+ // Optionally run one of the validators provided by cobra
+ if err := cobra.MinimumNArgs(1)(cmd, args); err != nil {
+ return err
+ }
+ // Run the custom validation logic
+ if myapp.IsValidColor(args[0]) {
+ return nil
+ }
+ return fmt.Errorf("invalid color specified: %s", args[0])
+ },
+ Run: func(cmd *cobra.Command, args []string) {
+ fmt.Println("Hello, World!")
+ },
+}
+
In the example below, we have defined three commands. Two are at the top level +and one (cmdTimes) is a child of one of the top commands. In this case the root +is not executable, meaning that a subcommand is required. This is accomplished +by not providing a ‘Run’ for the ‘rootCmd’.
+We have only defined one flag for a single command.
+More documentation about flags is available at https://github.com/spf13/pflag
+package main
+
+import (
+ "fmt"
+ "strings"
+
+ "github.com/spf13/cobra"
+)
+
+func main() {
+ var echoTimes int
+
+ var cmdPrint = &cobra.Command{
+ Use: "print [string to print]",
+ Short: "Print anything to the screen",
+ Long: `print is for printing anything back to the screen.
+For many years people have printed back to the screen.`,
+ Args: cobra.MinimumNArgs(1),
+ Run: func(cmd *cobra.Command, args []string) {
+ fmt.Println("Print: " + strings.Join(args, " "))
+ },
+ }
+
+ var cmdEcho = &cobra.Command{
+ Use: "echo [string to echo]",
+ Short: "Echo anything to the screen",
+ Long: `echo is for echoing anything back.
+Echo works a lot like print, except it has a child command.`,
+ Args: cobra.MinimumNArgs(1),
+ Run: func(cmd *cobra.Command, args []string) {
+ fmt.Println("Echo: " + strings.Join(args, " "))
+ },
+ }
+
+ var cmdTimes = &cobra.Command{
+ Use: "times [string to echo]",
+ Short: "Echo anything to the screen more times",
+ Long: `echo things multiple times back to the user by providing
+a count and a string.`,
+ Args: cobra.MinimumNArgs(1),
+ Run: func(cmd *cobra.Command, args []string) {
+ for i := 0; i < echoTimes; i++ {
+ fmt.Println("Echo: " + strings.Join(args, " "))
+ }
+ },
+ }
+
+ cmdTimes.Flags().IntVarP(&echoTimes, "times", "t", 1, "times to echo the input")
+
+ var rootCmd = &cobra.Command{Use: "app"}
+ rootCmd.AddCommand(cmdPrint, cmdEcho)
+ cmdEcho.AddCommand(cmdTimes)
+ rootCmd.Execute()
+}
+
For a more complete example of a larger application, please checkout Hugo.
+ + + + + + + + +Cobra automatically adds a help command to your application when you have subcommands. +This will be called when a user runs ‘app help’. Additionally, help will also +support all other commands as input. Say, for instance, you have a command called +‘create’ without any additional configuration; Cobra will work when ‘app help +create’ is called. Every command will automatically have the ‘–help’ flag added.
+ + + + + + + + +The following output is automatically generated by Cobra. Nothing beyond the +command and flag definitions are needed.
+$ cobra-cli help
+
+Cobra is a CLI library for Go that empowers applications.
+This application is a tool to generate the needed files
+to quickly create a Cobra application.
+
+Usage:
+ cobra-cli [command]
+
+Available Commands:
+ add Add a command to a Cobra Application
+ completion Generate the autocompletion script for the specified shell
+ help Help about any command
+ init Initialize a Cobra Application
+
+Flags:
+ -a, --author string author name for copyright attribution (default "YOUR NAME")
+ --config string config file (default is $HOME/.cobra.yaml)
+ -h, --help help for cobra-cli
+ -l, --license string name of license for the project
+ --viper use Viper for configuration
+
+Use "cobra-cli [command] --help" for more information about a command.
+
+Help is just a command like any other. There is no special logic or behavior +around it. In fact, you can provide your own if you want.
+ + + + + + + + +Cobra supports grouping of available commands in the help output. To group commands, each group must be explicitly
+defined using AddGroup()
on the parent command. Then a subcommand can be added to a group using the GroupID
element
+of that subcommand. The groups will appear in the help output in the same order as they are defined using different
+calls to AddGroup()
. If you use the generated help
or completion
commands, you can set their group ids using
+SetHelpCommandGroupId()
and SetCompletionCommandGroupId()
on the root command, respectively.
You can provide your own Help command or your own template for the default command to use +with the following functions:
+cmd.SetHelpCommand(cmd *Command)
+cmd.SetHelpFunc(f func(*Command, []string))
+cmd.SetHelpTemplate(s string)
+
The latter two will also apply to any children commands.
+ + + + + + + + +When the user provides an invalid flag or invalid command, Cobra responds by +showing the user the ‘usage’.
+ + + + + + + + +You may recognize this from the help above. That’s because the default help +embeds the usage as part of its output.
+$ cobra-cli --invalid
+Error: unknown flag: --invalid
+Usage:
+ cobra-cli [command]
+
+Available Commands:
+ add Add a command to a Cobra Application
+ completion Generate the autocompletion script for the specified shell
+ help Help about any command
+ init Initialize a Cobra Application
+
+Flags:
+ -a, --author string author name for copyright attribution (default "YOUR NAME")
+ --config string config file (default is $HOME/.cobra.yaml)
+ -h, --help help for cobra-cli
+ -l, --license string name of license for the project
+ --viper use Viper for configuration
+
+Use "cobra [command] --help" for more information about a command.
+
+
+
+
+
+
+
+
+
+You can provide your own usage function or template for Cobra to use. +Like help, the function and template are overridable through public methods:
+cmd.SetUsageFunc(f func(*Command) error)
+cmd.SetUsageTemplate(s string)
+
Cobra adds a top-level ‘–version’ flag if the Version field is set on the root command.
+Running an application with the ‘–version’ flag will print the version to stdout using
+the version template. The template can be customized using the
+cmd.SetVersionTemplate(s string)
function.
It is possible to run functions before or after the main Run
function of your command. The PersistentPreRun
and PreRun
functions will be executed before Run
. PersistentPostRun
and PostRun
will be executed after Run
. The Persistent*Run
functions will be inherited by children if they do not declare their own. These functions are run in the following order:
PersistentPreRun
PreRun
Run
PostRun
PersistentPostRun
An example of two commands which use all of these features is below. When the subcommand is executed, it will run the root command’s PersistentPreRun
but not the root command’s PersistentPostRun
:
package main
+
+import (
+ "fmt"
+
+ "github.com/spf13/cobra"
+)
+
+func main() {
+
+ var rootCmd = &cobra.Command{
+ Use: "root [sub]",
+ Short: "My root command",
+ PersistentPreRun: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside rootCmd PersistentPreRun with args: %v\n", args)
+ },
+ PreRun: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside rootCmd PreRun with args: %v\n", args)
+ },
+ Run: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside rootCmd Run with args: %v\n", args)
+ },
+ PostRun: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside rootCmd PostRun with args: %v\n", args)
+ },
+ PersistentPostRun: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside rootCmd PersistentPostRun with args: %v\n", args)
+ },
+ }
+
+ var subCmd = &cobra.Command{
+ Use: "sub [no options!]",
+ Short: "My subcommand",
+ PreRun: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside subCmd PreRun with args: %v\n", args)
+ },
+ Run: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside subCmd Run with args: %v\n", args)
+ },
+ PostRun: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside subCmd PostRun with args: %v\n", args)
+ },
+ PersistentPostRun: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside subCmd PersistentPostRun with args: %v\n", args)
+ },
+ }
+
+ rootCmd.AddCommand(subCmd)
+
+ rootCmd.SetArgs([]string{""})
+ rootCmd.Execute()
+ fmt.Println()
+ rootCmd.SetArgs([]string{"sub", "arg1", "arg2"})
+ rootCmd.Execute()
+}
+
Output:
+Inside rootCmd PersistentPreRun with args: []
+Inside rootCmd PreRun with args: []
+Inside rootCmd Run with args: []
+Inside rootCmd PostRun with args: []
+Inside rootCmd PersistentPostRun with args: []
+
+Inside rootCmd PersistentPreRun with args: [arg1 arg2]
+Inside subCmd PreRun with args: [arg1 arg2]
+Inside subCmd Run with args: [arg1 arg2]
+Inside subCmd PostRun with args: [arg1 arg2]
+Inside subCmd PersistentPostRun with args: [arg1 arg2]
+
+
+
+
+
+
+
+
+Cobra will print automatic suggestions when “unknown command” errors happen. This allows Cobra to behave similarly to the git
command when a typo happens. For example:
$ hugo srever
+Error: unknown command "srever" for "hugo"
+
+Did you mean this?
+ server
+
+Run 'hugo --help' for usage.
+
Suggestions are automatically generated based on existing subcommands and use an implementation of Levenshtein distance. Every registered command that matches a minimum distance of 2 (ignoring case) will be displayed as a suggestion.
+If you need to disable suggestions or tweak the string distance in your command, use:
+command.DisableSuggestions = true
+
or
+command.SuggestionsMinimumDistance = 1
+
You can also explicitly set names for which a given command will be suggested using the SuggestFor
attribute. This allows suggestions for strings that are not close in terms of string distance, but make sense in your set of commands but for which
+you don’t want aliases. Example:
$ kubectl remove
+Error: unknown command "remove" for "kubectl"
+
+Did you mean this?
+ delete
+
+Run 'kubectl help' for usage.
+
+
+
+
+
+
+
+
+Cobra can generate documentation based on subcommands, flags, etc. +Read more about it in the docs generation documentation.
+ + + + + + + + +Cobra can generate a shell-completion file for the following shells: bash, zsh, fish, PowerShell. +If you add more information to your commands, these completions can be amazingly powerful and flexible. +Read more about it in Shell Completions.
+ + + + + + + + +Cobra makes use of the shell-completion system to define a framework allowing you to provide Active Help to your users. +Active Help are messages (hints, warnings, etc) printed as the program is being used. +Read more about it in Active Help.
+ + + +Active Help is a framework provided by Cobra which allows a program to define messages (hints, warnings, etc) that will be printed during program usage. It aims to make it easier for your users to learn how to use your program. If configured by the program, Active Help is printed when the user triggers shell completion.
+For example,
+bash-5.1$ helm repo add [tab]
+You must choose a name for the repo you are adding.
+
+bash-5.1$ bin/helm package [tab]
+Please specify the path to the chart to package
+
+bash-5.1$ bin/helm package [tab][tab]
+bin/ internal/ scripts/ pkg/ testdata/
+
Hint: A good place to use Active Help messages is when the normal completion system does not provide any suggestions. In such cases, Active Help nicely supplements the normal shell completions to guide the user in knowing what is expected by the program.
+ + + + + + + + +Active Help is currently only supported for the following shells:
+As Active Help uses the shell completion system, the implementation of Active Help messages is done by enhancing custom dynamic completions. If you are not familiar with dynamic completions, please refer to Shell Completions.
+Adding Active Help is done through the use of the cobra.AppendActiveHelp(...)
function, where the program repeatedly adds Active Help messages to the list of completions. Keep reading for details.
Adding Active Help when completing a noun is done within the ValidArgsFunction(...)
of a command. Please notice the use of cobra.AppendActiveHelp(...)
in the following example:
cmd := &cobra.Command{
+ Use: "add [NAME] [URL]",
+ Short: "add a chart repository",
+ Args: require.ExactArgs(2),
+ RunE: func(cmd *cobra.Command, args []string) error {
+ return addRepo(args)
+ },
+ ValidArgsFunction: func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {
+ var comps []string
+ if len(args) == 0 {
+ comps = cobra.AppendActiveHelp(comps, "You must choose a name for the repo you are adding")
+ } else if len(args) == 1 {
+ comps = cobra.AppendActiveHelp(comps, "You must specify the URL for the repo you are adding")
+ } else {
+ comps = cobra.AppendActiveHelp(comps, "This command does not take any more arguments")
+ }
+ return comps, cobra.ShellCompDirectiveNoFileComp
+ },
+}
+
The example above defines the completions (none, in this specific example) as well as the Active Help messages for the helm repo add
command. It yields the following behavior:
bash-5.1$ helm repo add [tab]
+You must choose a name for the repo you are adding
+
+bash-5.1$ helm repo add grafana [tab]
+You must specify the URL for the repo you are adding
+
+bash-5.1$ helm repo add grafana https://grafana.github.io/helm-charts [tab]
+This command does not take any more arguments
+
Hint: As can be seen in the above example, a good place to use Active Help messages is when the normal completion system does not provide any suggestions. In such cases, Active Help nicely supplements the normal shell completions.
+ + + + + + + + +Providing Active Help for flags is done in the same fashion as for nouns, but using the completion function registered for the flag. For example:
+_ = cmd.RegisterFlagCompletionFunc("version", func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {
+ if len(args) != 2 {
+ return cobra.AppendActiveHelp(nil, "You must first specify the chart to install before the --version flag can be completed"), cobra.ShellCompDirectiveNoFileComp
+ }
+ return compVersionFlag(args[1], toComplete)
+ })
+
The example above prints an Active Help message when not enough information was given by the user to complete the --version
flag.
bash-5.1$ bin/helm install myrelease --version 2.0.[tab]
+You must first specify the chart to install before the --version flag can be completed
+
+bash-5.1$ bin/helm install myrelease bitnami/solr --version 2.0.[tab][tab]
+2.0.1 2.0.2 2.0.3
+
+
+
+
+
+
+
+
+You may want to allow your users to disable Active Help or choose between different levels of Active Help. It is entirely up to the program to define the type of configurability of Active Help that it wants to offer, if any. +Allowing to configure Active Help is entirely optional; you can use Active Help in your program without doing anything about Active Help configuration.
+The way to configure Active Help is to use the program’s Active Help environment
+variable. That variable is named <PROGRAM>_ACTIVE_HELP
where <PROGRAM>
is the name of your
+program in uppercase with any -
replaced by an _
. The variable should be set by the user to whatever
+Active Help configuration values are supported by the program.
For example, say helm
has chosen to support three levels for Active Help: on
, off
, local
. Then a user
+would set the desired behavior to local
by doing export HELM_ACTIVE_HELP=local
in their shell.
For simplicity, when in cmd.ValidArgsFunction(...)
or a flag’s completion function, the program should read the
+Active Help configuration using the cobra.GetActiveHelpConfig(cmd)
function and select what Active Help messages
+should or should not be added (instead of reading the environment variable directly).
For example:
+ValidArgsFunction: func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {
+ activeHelpLevel := cobra.GetActiveHelpConfig(cmd)
+
+ var comps []string
+ if len(args) == 0 {
+ if activeHelpLevel != "off" {
+ comps = cobra.AppendActiveHelp(comps, "You must choose a name for the repo you are adding")
+ }
+ } else if len(args) == 1 {
+ if activeHelpLevel != "off" {
+ comps = cobra.AppendActiveHelp(comps, "You must specify the URL for the repo you are adding")
+ }
+ } else {
+ if activeHelpLevel == "local" {
+ comps = cobra.AppendActiveHelp(comps, "This command does not take any more arguments")
+ }
+ }
+ return comps, cobra.ShellCompDirectiveNoFileComp
+},
+
Note 1: If the <PROGRAM>_ACTIVE_HELP
environment variable is set to the string “0”, Cobra will automatically disable all Active Help output (even if some output was specified by the program using the cobra.AppendActiveHelp(...)
function). Using “0” can simplify your code in situations where you want to blindly disable Active Help without having to call cobra.GetActiveHelpConfig(cmd)
explicitly.
Note 2: If a user wants to disable Active Help for every single program based on Cobra, she can set the environment variable COBRA_ACTIVE_HELP
to “0”. In this case cobra.GetActiveHelpConfig(cmd)
will return “0” no matter what the variable <PROGRAM>_ACTIVE_HELP
is set to.
Note 3: If the user does not set <PROGRAM>_ACTIVE_HELP
or COBRA_ACTIVE_HELP
(which will be a common case), the default value for the Active Help configuration returned by cobra.GetActiveHelpConfig(cmd)
will be the empty string.
Cobra provides a default completion
command for programs that wish to use it.
+When using the default completion
command, Active Help is configurable in the same
+fashion as described above using environment variables. You may wish to document this in more
+details for your users.
Debugging your Active Help code is done in the same way as debugging your dynamic completion code, which is with Cobra’s hidden __complete
command. Please refer to debugging shell completion for details.
When debugging with the __complete
command, if you want to specify different Active Help configurations, you should use the active help environment variable. That variable is named <PROGRAM>_ACTIVE_HELP
where any -
is replaced by an _
. For example, we can test deactivating some Active Help as shown below:
$ HELM_ACTIVE_HELP=1 bin/helm __complete install wordpress bitnami/h<ENTER>
+bitnami/haproxy
+bitnami/harbor
+_activeHelp_ WARNING: cannot re-use a name that is still in use
+:0
+Completion ended with directive: ShellCompDirectiveDefault
+
+$ HELM_ACTIVE_HELP=0 bin/helm __complete install wordpress bitnami/h<ENTER>
+bitnami/haproxy
+bitnami/harbor
+:0
+Completion ended with directive: ShellCompDirectiveDefault
+
+
+
+
+
+
+
+
+
+
+Please refer to Shell Completions for details.
+ + + + + + + + +For backward compatibility, Cobra still supports its legacy dynamic completion solution (described below). Unlike the ValidArgsFunction
solution, the legacy solution will only work for Bash shell-completion and not for other shells. This legacy solution can be used along-side ValidArgsFunction
and RegisterFlagCompletionFunc()
, as long as both solutions are not used for the same command. This provides a path to gradually migrate from the legacy solution to the new solution.
Note: Cobra’s default completion
command uses bash completion V2. If you are currently using Cobra’s legacy dynamic completion solution, you should not use the default completion
command but continue using your own.
The legacy solution allows you to inject bash functions into the bash completion script. Those bash functions are responsible for providing the completion choices for your own completions.
+Some code that works in kubernetes:
+const (
+ bash_completion_func = `__kubectl_parse_get()
+{
+ local kubectl_output out
+ if kubectl_output=$(kubectl get --no-headers "$1" 2>/dev/null); then
+ out=($(echo "${kubectl_output}" | awk '{print $1}'))
+ COMPREPLY=( $( compgen -W "${out[*]}" -- "$cur" ) )
+ fi
+}
+
+__kubectl_get_resource()
+{
+ if [[ ${#nouns[@]} -eq 0 ]]; then
+ return 1
+ fi
+ __kubectl_parse_get ${nouns[${#nouns[@]} -1]}
+ if [[ $? -eq 0 ]]; then
+ return 0
+ fi
+}
+
+__kubectl_custom_func() {
+ case ${last_command} in
+ kubectl_get | kubectl_describe | kubectl_delete | kubectl_stop)
+ __kubectl_get_resource
+ return
+ ;;
+ *)
+ ;;
+ esac
+}
+`)
+
And then I set that in my command definition:
+cmds := &cobra.Command{
+ Use: "kubectl",
+ Short: "kubectl controls the Kubernetes cluster manager",
+ Long: `kubectl controls the Kubernetes cluster manager.
+
+Find more information at https://github.com/GoogleCloudPlatform/kubernetes.`,
+ Run: runHelp,
+ BashCompletionFunction: bash_completion_func,
+}
+
The BashCompletionFunction
option is really only valid/useful on the root command. Doing the above will cause __kubectl_custom_func()
(__<command-use>_custom_func()
) to be called when the built in processor was unable to find a solution. In the case of kubernetes a valid command might look something like kubectl get pod [mypod]
. If you type kubectl get pod [tab][tab]
the __kubectl_customc_func()
will run because the cobra.Command only understood “kubectl” and “get.” __kubectl_custom_func()
will see that the cobra.Command is “kubectl_get” and will thus call another helper __kubectl_get_resource()
. __kubectl_get_resource
will look at the ’nouns’ collected. In our example the only noun will be pod
. So it will call __kubectl_parse_get pod
. __kubectl_parse_get
will actually call out to kubernetes and get any pods. It will then set COMPREPLY
to valid pods!
Similarly, for flags:
+ annotation := make(map[string][]string)
+ annotation[cobra.BashCompCustom] = []string{"__kubectl_get_namespaces"}
+
+ flag := &pflag.Flag{
+ Name: "namespace",
+ Usage: usage,
+ Annotations: annotation,
+ }
+ cmd.Flags().AddFlag(flag)
+
In addition add the __kubectl_get_namespaces
implementation in the BashCompletionFunction
+value, e.g.:
__kubectl_get_namespaces()
+{
+ local template
+ template="{{ range .items }}{{ .metadata.name }} {{ end }}"
+ local kubectl_out
+ if kubectl_out=$(kubectl get -o template --template="${template}" namespace 2>/dev/null); then
+ COMPREPLY=( $( compgen -W "${kubectl_out}[*]" -- "$cur" ) )
+ fi
+}
+
Please refer to Shell Completions for details.
+ + + + + + + + + + +Please refer to Shell Completions for details.
+ + + + + + + + + + +Please refer to Shell Completions for details.
+ + + + + + + + +Cobra 1.1 standardized its zsh completion support to align it with its other shell completions. Although the API was kept backwards-compatible, some small changes in behavior were introduced.
+ + + + + + + + +See further below for more details on these deprecations.
+cmd.MarkZshCompPositionalArgumentFile(pos, []string{})
is no longer needed. It is therefore deprecated and silently ignored.cmd.MarkZshCompPositionalArgumentFile(pos, glob[])
is deprecated and silently ignored.
+ValidArgsFunction
with ShellCompDirectiveFilterFileExt
.cmd.MarkZshCompPositionalArgumentWords()
is deprecated and silently ignored.
+ValidArgsFunction
.Noun completion
+Old behavior | +New behavior | +
---|---|
No file completion by default (opposite of bash) | +File completion by default; use ValidArgsFunction with ShellCompDirectiveNoFileComp to turn off file completion on a per-argument basis |
+
Completion of flag names without the - prefix having been typed |
+Flag names are only completed if the user has typed the first - |
+
cmd.MarkZshCompPositionalArgumentFile(pos, []string{}) used to turn on file completion on a per-argument position basis |
+File completion for all arguments by default; cmd.MarkZshCompPositionalArgumentFile() is deprecated and silently ignored |
+
cmd.MarkZshCompPositionalArgumentFile(pos, glob[]) used to turn on file completion with glob filtering on a per-argument position basis (zsh-specific) |
+cmd.MarkZshCompPositionalArgumentFile() is deprecated and silently ignored; use ValidArgsFunction with ShellCompDirectiveFilterFileExt for file extension filtering (not full glob filtering) |
+
cmd.MarkZshCompPositionalArgumentWords(pos, words[]) used to provide completion choices on a per-argument position basis (zsh-specific) |
+cmd.MarkZshCompPositionalArgumentWords() is deprecated and silently ignored; use ValidArgsFunction to achieve the same behavior |
+
Flag-value completion
+Old behavior | +New behavior | +
---|---|
No file completion by default (opposite of bash) | +File completion by default; use RegisterFlagCompletionFunc() with ShellCompDirectiveNoFileComp to turn off file completion |
+
cmd.MarkFlagFilename(flag, []string{}) and similar used to turn on file completion |
+File completion by default; cmd.MarkFlagFilename(flag, []string{}) no longer needed in this context and silently ignored |
+
cmd.MarkFlagFilename(flag, glob[]) used to turn on file completion with glob filtering (syntax of []string{"*.yaml", "*.yml"} incompatible with bash) |
+Will continue to work, however, support for bash syntax is added and should be used instead so as to work for all shells ([]string{"yaml", "yml"} ) |
+
cmd.MarkFlagDirname(flag) only completes directories (zsh-specific) |
+Has been added for all shells | +
Completion of a flag name does not repeat, unless flag is of type *Array or *Slice (not supported by bash) |
+Retained for zsh and added to fish |
+
Completion of a flag name does not provide the = form (unlike bash) |
+Retained for zsh and added to fish |
+
Improvements
+ValidArgsFunction
and RegisterFlagCompletionFunc()
)=
form of flagsGenerating man pages from a cobra command is incredibly easy. An example is as follows:
+package main
+
+import (
+ "log"
+
+ "github.com/spf13/cobra"
+ "github.com/spf13/cobra/doc"
+)
+
+func main() {
+ cmd := &cobra.Command{
+ Use: "test",
+ Short: "my test program",
+ }
+ header := &doc.GenManHeader{
+ Title: "MINE",
+ Section: "3",
+ }
+ err := doc.GenManTree(cmd, header, "/tmp")
+ if err != nil {
+ log.Fatal(err)
+ }
+}
+
That will get you a man page /tmp/test.3
Generating Markdown pages from a cobra command is incredibly easy. An example is as follows:
+package main
+
+import (
+ "log"
+
+ "github.com/spf13/cobra"
+ "github.com/spf13/cobra/doc"
+)
+
+func main() {
+ cmd := &cobra.Command{
+ Use: "test",
+ Short: "my test program",
+ }
+ err := doc.GenMarkdownTree(cmd, "/tmp")
+ if err != nil {
+ log.Fatal(err)
+ }
+}
+
That will get you a Markdown document /tmp/test.md
This program can actually generate docs for the kubectl command in the kubernetes project
+package main
+
+import (
+ "log"
+ "io/ioutil"
+ "os"
+
+ "k8s.io/kubernetes/pkg/kubectl/cmd"
+ cmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
+
+ "github.com/spf13/cobra/doc"
+)
+
+func main() {
+ kubectl := cmd.NewKubectlCommand(cmdutil.NewFactory(nil), os.Stdin, ioutil.Discard, ioutil.Discard)
+ err := doc.GenMarkdownTree(kubectl, "./")
+ if err != nil {
+ log.Fatal(err)
+ }
+}
+
This will generate a whole series of files, one for each command in the tree, in the directory specified (in this case “./”)
+ + + + + + + + +You may wish to have more control over the output, or only generate for a single command, instead of the entire command tree. If this is the case you may prefer to GenMarkdown
instead of GenMarkdownTree
out := new(bytes.Buffer)
+ err := doc.GenMarkdown(cmd, out)
+ if err != nil {
+ log.Fatal(err)
+ }
+
This will write the markdown doc for ONLY “cmd” into the out, buffer.
+ + + + + + + + +Both GenMarkdown
and GenMarkdownTree
have alternate versions with callbacks to get some control of the output:
func GenMarkdownTreeCustom(cmd *Command, dir string, filePrepender, linkHandler func(string) string) error {
+ //...
+}
+
func GenMarkdownCustom(cmd *Command, out *bytes.Buffer, linkHandler func(string) string) error {
+ //...
+}
+
The filePrepender
will prepend the return value given the full filepath to the rendered Markdown file. A common use case is to add front matter to use the generated documentation with Hugo:
const fmTemplate = `---
+date: %s
+title: "%s"
+slug: %s
+url: %s
+---
+`
+
+filePrepender := func(filename string) string {
+ now := time.Now().Format(time.RFC3339)
+ name := filepath.Base(filename)
+ base := strings.TrimSuffix(name, path.Ext(name))
+ url := "/commands/" + strings.ToLower(base) + "/"
+ return fmt.Sprintf(fmTemplate, now, strings.Replace(base, "_", " ", -1), base, url)
+}
+
The linkHandler
can be used to customize the rendered internal links to the commands, given a filename:
linkHandler := func(name string) string {
+ base := strings.TrimSuffix(name, path.Ext(name))
+ return "/commands/" + strings.ToLower(base) + "/"
+}
+
Generating ReST pages from a cobra command is incredibly easy. An example is as follows:
+package main
+
+import (
+ "log"
+
+ "github.com/spf13/cobra"
+ "github.com/spf13/cobra/doc"
+)
+
+func main() {
+ cmd := &cobra.Command{
+ Use: "test",
+ Short: "my test program",
+ }
+ err := doc.GenReSTTree(cmd, "/tmp")
+ if err != nil {
+ log.Fatal(err)
+ }
+}
+
That will get you a ReST document /tmp/test.rst
This program can actually generate docs for the kubectl command in the kubernetes project
+package main
+
+import (
+ "log"
+ "io/ioutil"
+ "os"
+
+ "k8s.io/kubernetes/pkg/kubectl/cmd"
+ cmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
+
+ "github.com/spf13/cobra/doc"
+)
+
+func main() {
+ kubectl := cmd.NewKubectlCommand(cmdutil.NewFactory(nil), os.Stdin, ioutil.Discard, ioutil.Discard)
+ err := doc.GenReSTTree(kubectl, "./")
+ if err != nil {
+ log.Fatal(err)
+ }
+}
+
This will generate a whole series of files, one for each command in the tree, in the directory specified (in this case “./”)
+ + + + + + + + +You may wish to have more control over the output, or only generate for a single command, instead of the entire command tree. If this is the case you may prefer to GenReST
instead of GenReSTTree
out := new(bytes.Buffer)
+ err := doc.GenReST(cmd, out)
+ if err != nil {
+ log.Fatal(err)
+ }
+
This will write the ReST doc for ONLY “cmd” into the out, buffer.
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Both GenReST
and GenReSTTree
have alternate versions with callbacks to get some control of the output:
func GenReSTTreeCustom(cmd *Command, dir string, filePrepender func(string) string, linkHandler func(string, string) string) error {
+ //...
+}
+
func GenReSTCustom(cmd *Command, out *bytes.Buffer, linkHandler func(string, string) string) error {
+ //...
+}
+
The filePrepender
will prepend the return value given the full filepath to the rendered ReST file. A common use case is to add front matter to use the generated documentation with Hugo:
const fmTemplate = `---
+date: %s
+title: "%s"
+slug: %s
+url: %s
+---
+`
+filePrepender := func(filename string) string {
+ now := time.Now().Format(time.RFC3339)
+ name := filepath.Base(filename)
+ base := strings.TrimSuffix(name, path.Ext(name))
+ url := "/commands/" + strings.ToLower(base) + "/"
+ return fmt.Sprintf(fmTemplate, now, strings.Replace(base, "_", " ", -1), base, url)
+}
+
The linkHandler
can be used to customize the rendered links to the commands, given a command name and reference. This is useful while converting rst to html or while generating documentation with tools like Sphinx where :ref:
is used:
// Sphinx cross-referencing format
+linkHandler := func(name, ref string) string {
+ return fmt.Sprintf(":ref:`%s <%s>`", name, ref)
+}
+
Generating yaml files from a cobra command is incredibly easy. An example is as follows:
+package main
+
+import (
+ "log"
+
+ "github.com/spf13/cobra"
+ "github.com/spf13/cobra/doc"
+)
+
+func main() {
+ cmd := &cobra.Command{
+ Use: "test",
+ Short: "my test program",
+ }
+ err := doc.GenYamlTree(cmd, "/tmp")
+ if err != nil {
+ log.Fatal(err)
+ }
+}
+
That will get you a Yaml document /tmp/test.yaml
This program can actually generate docs for the kubectl command in the kubernetes project
+package main
+
+import (
+ "io/ioutil"
+ "log"
+ "os"
+
+ "k8s.io/kubernetes/pkg/kubectl/cmd"
+ cmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
+
+ "github.com/spf13/cobra/doc"
+)
+
+func main() {
+ kubectl := cmd.NewKubectlCommand(cmdutil.NewFactory(nil), os.Stdin, ioutil.Discard, ioutil.Discard)
+ err := doc.GenYamlTree(kubectl, "./")
+ if err != nil {
+ log.Fatal(err)
+ }
+}
+
This will generate a whole series of files, one for each command in the tree, in the directory specified (in this case “./”)
+ + + + + + + + +You may wish to have more control over the output, or only generate for a single command, instead of the entire command tree. If this is the case you may prefer to GenYaml
instead of GenYamlTree
out := new(bytes.Buffer)
+ doc.GenYaml(cmd, out)
+
This will write the yaml doc for ONLY “cmd” into the out, buffer.
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Both GenYaml
and GenYamlTree
have alternate versions with callbacks to get some control of the output:
func GenYamlTreeCustom(cmd *Command, dir string, filePrepender, linkHandler func(string) string) error {
+ //...
+}
+
func GenYamlCustom(cmd *Command, out *bytes.Buffer, linkHandler func(string) string) error {
+ //...
+}
+
The filePrepender
will prepend the return value given the full filepath to the rendered Yaml file. A common use case is to add front matter to use the generated documentation with Hugo:
const fmTemplate = `---
+date: %s
+title: "%s"
+slug: %s
+url: %s
+---
+`
+
+filePrepender := func(filename string) string {
+ now := time.Now().Format(time.RFC3339)
+ name := filepath.Base(filename)
+ base := strings.TrimSuffix(name, path.Ext(name))
+ url := "/commands/" + strings.ToLower(base) + "/"
+ return fmt.Sprintf(fmTemplate, now, strings.Replace(base, "_", " ", -1), base, url)
+}
+
The linkHandler
can be used to customize the rendered internal links to the commands, given a filename:
linkHandler := func(name string) string {
+ base := strings.TrimSuffix(name, path.Ext(name))
+ return "/commands/" + strings.ToLower(base) + "/"
+}
+
upctl
)While you are welcome to provide your own organization, typically a Cobra-based +application will follow the following organizational structure:
+ ▾ appName/
+ ▾ cmd/
+ add.go
+ your.go
+ commands.go
+ here.go
+ main.go
+
In a Cobra app, typically the main.go file is very bare. It serves one purpose: initializing Cobra.
+package main
+
+import (
+ "{pathToYourApp}/cmd"
+)
+
+func main() {
+ cmd.Execute()
+}
+
Cobra-CLI is its own program that will create your application and add any commands you want. +It’s the easiest way to incorporate Cobra into your application.
+For complete details on using the Cobra generator, please refer to The Cobra-CLI Generator README
+ + + + + + + + +To manually implement Cobra you need to create a bare main.go file and a rootCmd file. +You will optionally provide additional commands as you see fit.
+ + + + + + + + +Cobra doesn’t require any special constructors. Simply create your commands.
+Ideally you place this in app/cmd/root.go:
+var rootCmd = &cobra.Command{
+ Use: "hugo",
+ Short: "Hugo is a very fast static site generator",
+ Long: `A Fast and Flexible Static Site Generator built with
+ love by spf13 and friends in Go.
+ Complete documentation is available at https://gohugo.io/documentation/`,
+ Run: func(cmd *cobra.Command, args []string) {
+ // Do Stuff Here
+ },
+}
+
+func Execute() {
+ if err := rootCmd.Execute(); err != nil {
+ fmt.Fprintln(os.Stderr, err)
+ os.Exit(1)
+ }
+}
+
You will additionally define flags and handle configuration in your init() function.
+For example cmd/root.go:
+package cmd
+
+import (
+ "fmt"
+ "os"
+
+ "github.com/spf13/cobra"
+ "github.com/spf13/viper"
+)
+
+var (
+ // Used for flags.
+ cfgFile string
+ userLicense string
+
+ rootCmd = &cobra.Command{
+ Use: "cobra-cli",
+ Short: "A generator for Cobra based Applications",
+ Long: `Cobra is a CLI library for Go that empowers applications.
+This application is a tool to generate the needed files
+to quickly create a Cobra application.`,
+ }
+)
+
+// Execute executes the root command.
+func Execute() error {
+ return rootCmd.Execute()
+}
+
+func init() {
+ cobra.OnInitialize(initConfig)
+
+ rootCmd.PersistentFlags().StringVar(&cfgFile, "config", "", "config file (default is $HOME/.cobra.yaml)")
+ rootCmd.PersistentFlags().StringP("author", "a", "YOUR NAME", "author name for copyright attribution")
+ rootCmd.PersistentFlags().StringVarP(&userLicense, "license", "l", "", "name of license for the project")
+ rootCmd.PersistentFlags().Bool("viper", true, "use Viper for configuration")
+ viper.BindPFlag("author", rootCmd.PersistentFlags().Lookup("author"))
+ viper.BindPFlag("useViper", rootCmd.PersistentFlags().Lookup("viper"))
+ viper.SetDefault("author", "NAME HERE <EMAIL ADDRESS>")
+ viper.SetDefault("license", "apache")
+
+ rootCmd.AddCommand(addCmd)
+ rootCmd.AddCommand(initCmd)
+}
+
+func initConfig() {
+ if cfgFile != "" {
+ // Use config file from the flag.
+ viper.SetConfigFile(cfgFile)
+ } else {
+ // Find home directory.
+ home, err := os.UserHomeDir()
+ cobra.CheckErr(err)
+
+ // Search config in home directory with name ".cobra" (without extension).
+ viper.AddConfigPath(home)
+ viper.SetConfigType("yaml")
+ viper.SetConfigName(".cobra")
+ }
+
+ viper.AutomaticEnv()
+
+ if err := viper.ReadInConfig(); err == nil {
+ fmt.Println("Using config file:", viper.ConfigFileUsed())
+ }
+}
+
With the root command you need to have your main function execute it. +Execute should be run on the root for clarity, though it can be called on any command.
+In a Cobra app, typically the main.go file is very bare. It serves one purpose: to initialize Cobra.
+package main
+
+import (
+ "{pathToYourApp}/cmd"
+)
+
+func main() {
+ cmd.Execute()
+}
+
Additional commands can be defined and typically are each given their own file +inside of the cmd/ directory.
+If you wanted to create a version command you would create cmd/version.go and +populate it with the following:
+package cmd
+
+import (
+ "fmt"
+
+ "github.com/spf13/cobra"
+)
+
+func init() {
+ rootCmd.AddCommand(versionCmd)
+}
+
+var versionCmd = &cobra.Command{
+ Use: "version",
+ Short: "Print the version number of Hugo",
+ Long: `All software has versions. This is Hugo's`,
+ Run: func(cmd *cobra.Command, args []string) {
+ fmt.Println("Hugo Static Site Generator v0.9 -- HEAD")
+ },
+}
+
A command may have subcommands which in turn may have other subcommands. This is achieved by using
+AddCommand
. In some cases, especially in larger applications, each subcommand may be defined in
+its own go package.
The suggested approach is for the parent command to use AddCommand
to add its most immediate
+subcommands. For example, consider the following directory structure:
├── cmd
+│ ├── root.go
+│ └── sub1
+│ ├── sub1.go
+│ └── sub2
+│ ├── leafA.go
+│ ├── leafB.go
+│ └── sub2.go
+└── main.go
+
In this case:
+init
function of root.go
adds the command defined in sub1.go
to the root command.init
function of sub1.go
adds the command defined in sub2.go
to the sub1 command.init
function of sub2.go
adds the commands defined in leafA.go
and leafB.go
to the
+sub2 command.This approach ensures the subcommands are always included at compile time while avoiding cyclic +references.
+ + + + + + + + +If you wish to return an error to the caller of a command, RunE
can be used.
package cmd
+
+import (
+ "fmt"
+
+ "github.com/spf13/cobra"
+)
+
+func init() {
+ rootCmd.AddCommand(tryCmd)
+}
+
+var tryCmd = &cobra.Command{
+ Use: "try",
+ Short: "Try and possibly fail at something",
+ RunE: func(cmd *cobra.Command, args []string) error {
+ if err := someFunc(); err != nil {
+ return err
+ }
+ return nil
+ },
+}
+
The error can then be caught at the execute function call.
+ + + + + + + + +Flags provide modifiers to control how the action command operates.
+ + + + + + + + +Since the flags are defined and used in different locations, we need to +define a variable outside with the correct scope to assign the flag to +work with.
+var Verbose bool
+var Source string
+
There are two different approaches to assign a flag.
+ + + + + + + + +A flag can be ‘persistent’, meaning that this flag will be available to the +command it’s assigned to as well as every command under that command. For +global flags, assign a flag as a persistent flag on the root.
+rootCmd.PersistentFlags().BoolVarP(&Verbose, "verbose", "v", false, "verbose output")
+
A flag can also be assigned locally, which will only apply to that specific command.
+localCmd.Flags().StringVarP(&Source, "source", "s", "", "Source directory to read from")
+
By default, Cobra only parses local flags on the target command, and any local flags on
+parent commands are ignored. By enabling Command.TraverseChildren
, Cobra will
+parse local flags on each command before executing the target command.
command := cobra.Command{
+ Use: "print [OPTIONS] [COMMANDS]",
+ TraverseChildren: true,
+}
+
You can also bind your flags with viper:
+var author string
+
+func init() {
+ rootCmd.PersistentFlags().StringVar(&author, "author", "YOUR NAME", "Author name for copyright attribution")
+ viper.BindPFlag("author", rootCmd.PersistentFlags().Lookup("author"))
+}
+
In this example, the persistent flag author
is bound with viper
.
+Note: the variable author
will not be set to the value from config,
+when the --author
flag is provided by user.
More in viper documentation.
+ + + + + + + + +Flags are optional by default. If instead you wish your command to report an error +when a flag has not been set, mark it as required:
+rootCmd.Flags().StringVarP(&Region, "region", "r", "", "AWS region (required)")
+rootCmd.MarkFlagRequired("region")
+
Or, for persistent flags:
+rootCmd.PersistentFlags().StringVarP(&Region, "region", "r", "", "AWS region (required)")
+rootCmd.MarkPersistentFlagRequired("region")
+
If you have different flags that must be provided together (e.g. if they provide the --username
flag they MUST provide the --password
flag as well) then
+Cobra can enforce that requirement:
rootCmd.Flags().StringVarP(&u, "username", "u", "", "Username (required if password is set)")
+rootCmd.Flags().StringVarP(&pw, "password", "p", "", "Password (required if username is set)")
+rootCmd.MarkFlagsRequiredTogether("username", "password")
+
You can also prevent different flags from being provided together if they represent mutually
+exclusive options such as specifying an output format as either --json
or --yaml
but never both:
rootCmd.Flags().BoolVar(&ofJson, "json", false, "Output in JSON")
+rootCmd.Flags().BoolVar(&ofYaml, "yaml", false, "Output in YAML")
+rootCmd.MarkFlagsMutuallyExclusive("json", "yaml")
+
If you want to require at least one flag from a group to be present, you can use MarkFlagsOneRequired
.
+This can be combined with MarkFlagsMutuallyExclusive
to enforce exactly one flag from a given group:
rootCmd.Flags().BoolVar(&ofJson, "json", false, "Output in JSON")
+rootCmd.Flags().BoolVar(&ofYaml, "yaml", false, "Output in YAML")
+rootCmd.MarkFlagsOneRequired("json", "yaml")
+rootCmd.MarkFlagsMutuallyExclusive("json", "yaml")
+
In these cases:
+Validation of positional arguments can be specified using the Args
field of Command
.
+The following validators are built in:
NoArgs
- report an error if there are any positional args.ArbitraryArgs
- accept any number of args.MinimumNArgs(int)
- report an error if less than N positional args are provided.MaximumNArgs(int)
- report an error if more than N positional args are provided.ExactArgs(int)
- report an error if there are not exactly N positional args.RangeArgs(min, max)
- report an error if the number of args is not between min
and max
.OnlyValidArgs
- report an error if there are any positional args not specified in the ValidArgs
field of Command
, which can optionally be set to a list of valid values for positional args.If Args
is undefined or nil
, it defaults to ArbitraryArgs
.
Moreover, MatchAll(pargs ...PositionalArgs)
enables combining existing checks with arbitrary other checks.
+For instance, if you want to report an error if there are not exactly N positional args OR if there are any positional
+args that are not in the ValidArgs
field of Command
, you can call MatchAll
on ExactArgs
and OnlyValidArgs
, as
+shown below:
var cmd = &cobra.Command{
+ Short: "hello",
+ Args: cobra.MatchAll(cobra.ExactArgs(2), cobra.OnlyValidArgs),
+ Run: func(cmd *cobra.Command, args []string) {
+ fmt.Println("Hello, World!")
+ },
+}
+
It is possible to set any custom validator that satisfies func(cmd *cobra.Command, args []string) error
.
+For example:
var cmd = &cobra.Command{
+ Short: "hello",
+ Args: func(cmd *cobra.Command, args []string) error {
+ // Optionally run one of the validators provided by cobra
+ if err := cobra.MinimumNArgs(1)(cmd, args); err != nil {
+ return err
+ }
+ // Run the custom validation logic
+ if myapp.IsValidColor(args[0]) {
+ return nil
+ }
+ return fmt.Errorf("invalid color specified: %s", args[0])
+ },
+ Run: func(cmd *cobra.Command, args []string) {
+ fmt.Println("Hello, World!")
+ },
+}
+
In the example below, we have defined three commands. Two are at the top level +and one (cmdTimes) is a child of one of the top commands. In this case the root +is not executable, meaning that a subcommand is required. This is accomplished +by not providing a ‘Run’ for the ‘rootCmd’.
+We have only defined one flag for a single command.
+More documentation about flags is available at https://github.com/spf13/pflag
+package main
+
+import (
+ "fmt"
+ "strings"
+
+ "github.com/spf13/cobra"
+)
+
+func main() {
+ var echoTimes int
+
+ var cmdPrint = &cobra.Command{
+ Use: "print [string to print]",
+ Short: "Print anything to the screen",
+ Long: `print is for printing anything back to the screen.
+For many years people have printed back to the screen.`,
+ Args: cobra.MinimumNArgs(1),
+ Run: func(cmd *cobra.Command, args []string) {
+ fmt.Println("Print: " + strings.Join(args, " "))
+ },
+ }
+
+ var cmdEcho = &cobra.Command{
+ Use: "echo [string to echo]",
+ Short: "Echo anything to the screen",
+ Long: `echo is for echoing anything back.
+Echo works a lot like print, except it has a child command.`,
+ Args: cobra.MinimumNArgs(1),
+ Run: func(cmd *cobra.Command, args []string) {
+ fmt.Println("Echo: " + strings.Join(args, " "))
+ },
+ }
+
+ var cmdTimes = &cobra.Command{
+ Use: "times [string to echo]",
+ Short: "Echo anything to the screen more times",
+ Long: `echo things multiple times back to the user by providing
+a count and a string.`,
+ Args: cobra.MinimumNArgs(1),
+ Run: func(cmd *cobra.Command, args []string) {
+ for i := 0; i < echoTimes; i++ {
+ fmt.Println("Echo: " + strings.Join(args, " "))
+ }
+ },
+ }
+
+ cmdTimes.Flags().IntVarP(&echoTimes, "times", "t", 1, "times to echo the input")
+
+ var rootCmd = &cobra.Command{Use: "app"}
+ rootCmd.AddCommand(cmdPrint, cmdEcho)
+ cmdEcho.AddCommand(cmdTimes)
+ rootCmd.Execute()
+}
+
For a more complete example of a larger application, please checkout Hugo.
+ + + + + + + + +Cobra automatically adds a help command to your application when you have subcommands. +This will be called when a user runs ‘app help’. Additionally, help will also +support all other commands as input. Say, for instance, you have a command called +‘create’ without any additional configuration; Cobra will work when ‘app help +create’ is called. Every command will automatically have the ‘–help’ flag added.
+ + + + + + + + +The following output is automatically generated by Cobra. Nothing beyond the +command and flag definitions are needed.
+$ cobra-cli help
+
+Cobra is a CLI library for Go that empowers applications.
+This application is a tool to generate the needed files
+to quickly create a Cobra application.
+
+Usage:
+ cobra-cli [command]
+
+Available Commands:
+ add Add a command to a Cobra Application
+ completion Generate the autocompletion script for the specified shell
+ help Help about any command
+ init Initialize a Cobra Application
+
+Flags:
+ -a, --author string author name for copyright attribution (default "YOUR NAME")
+ --config string config file (default is $HOME/.cobra.yaml)
+ -h, --help help for cobra-cli
+ -l, --license string name of license for the project
+ --viper use Viper for configuration
+
+Use "cobra-cli [command] --help" for more information about a command.
+
+Help is just a command like any other. There is no special logic or behavior +around it. In fact, you can provide your own if you want.
+ + + + + + + + +Cobra supports grouping of available commands in the help output. To group commands, each group must be explicitly
+defined using AddGroup()
on the parent command. Then a subcommand can be added to a group using the GroupID
element
+of that subcommand. The groups will appear in the help output in the same order as they are defined using different
+calls to AddGroup()
. If you use the generated help
or completion
commands, you can set their group ids using
+SetHelpCommandGroupId()
and SetCompletionCommandGroupId()
on the root command, respectively.
You can provide your own Help command or your own template for the default command to use +with the following functions:
+cmd.SetHelpCommand(cmd *Command)
+cmd.SetHelpFunc(f func(*Command, []string))
+cmd.SetHelpTemplate(s string)
+
The latter two will also apply to any children commands.
+ + + + + + + + +When the user provides an invalid flag or invalid command, Cobra responds by +showing the user the ‘usage’.
+ + + + + + + + +You may recognize this from the help above. That’s because the default help +embeds the usage as part of its output.
+$ cobra-cli --invalid
+Error: unknown flag: --invalid
+Usage:
+ cobra-cli [command]
+
+Available Commands:
+ add Add a command to a Cobra Application
+ completion Generate the autocompletion script for the specified shell
+ help Help about any command
+ init Initialize a Cobra Application
+
+Flags:
+ -a, --author string author name for copyright attribution (default "YOUR NAME")
+ --config string config file (default is $HOME/.cobra.yaml)
+ -h, --help help for cobra-cli
+ -l, --license string name of license for the project
+ --viper use Viper for configuration
+
+Use "cobra [command] --help" for more information about a command.
+
+
+
+
+
+
+
+
+
+You can provide your own usage function or template for Cobra to use. +Like help, the function and template are overridable through public methods:
+cmd.SetUsageFunc(f func(*Command) error)
+cmd.SetUsageTemplate(s string)
+
Cobra adds a top-level ‘–version’ flag if the Version field is set on the root command.
+Running an application with the ‘–version’ flag will print the version to stdout using
+the version template. The template can be customized using the
+cmd.SetVersionTemplate(s string)
function.
It is possible to run functions before or after the main Run
function of your command. The PersistentPreRun
and PreRun
functions will be executed before Run
. PersistentPostRun
and PostRun
will be executed after Run
. The Persistent*Run
functions will be inherited by children if they do not declare their own. These functions are run in the following order:
PersistentPreRun
PreRun
Run
PostRun
PersistentPostRun
An example of two commands which use all of these features is below. When the subcommand is executed, it will run the root command’s PersistentPreRun
but not the root command’s PersistentPostRun
:
package main
+
+import (
+ "fmt"
+
+ "github.com/spf13/cobra"
+)
+
+func main() {
+
+ var rootCmd = &cobra.Command{
+ Use: "root [sub]",
+ Short: "My root command",
+ PersistentPreRun: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside rootCmd PersistentPreRun with args: %v\n", args)
+ },
+ PreRun: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside rootCmd PreRun with args: %v\n", args)
+ },
+ Run: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside rootCmd Run with args: %v\n", args)
+ },
+ PostRun: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside rootCmd PostRun with args: %v\n", args)
+ },
+ PersistentPostRun: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside rootCmd PersistentPostRun with args: %v\n", args)
+ },
+ }
+
+ var subCmd = &cobra.Command{
+ Use: "sub [no options!]",
+ Short: "My subcommand",
+ PreRun: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside subCmd PreRun with args: %v\n", args)
+ },
+ Run: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside subCmd Run with args: %v\n", args)
+ },
+ PostRun: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside subCmd PostRun with args: %v\n", args)
+ },
+ PersistentPostRun: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside subCmd PersistentPostRun with args: %v\n", args)
+ },
+ }
+
+ rootCmd.AddCommand(subCmd)
+
+ rootCmd.SetArgs([]string{""})
+ rootCmd.Execute()
+ fmt.Println()
+ rootCmd.SetArgs([]string{"sub", "arg1", "arg2"})
+ rootCmd.Execute()
+}
+
Output:
+Inside rootCmd PersistentPreRun with args: []
+Inside rootCmd PreRun with args: []
+Inside rootCmd Run with args: []
+Inside rootCmd PostRun with args: []
+Inside rootCmd PersistentPostRun with args: []
+
+Inside rootCmd PersistentPreRun with args: [arg1 arg2]
+Inside subCmd PreRun with args: [arg1 arg2]
+Inside subCmd Run with args: [arg1 arg2]
+Inside subCmd PostRun with args: [arg1 arg2]
+Inside subCmd PersistentPostRun with args: [arg1 arg2]
+
+
+
+
+
+
+
+
+Cobra will print automatic suggestions when “unknown command” errors happen. This allows Cobra to behave similarly to the git
command when a typo happens. For example:
$ hugo srever
+Error: unknown command "srever" for "hugo"
+
+Did you mean this?
+ server
+
+Run 'hugo --help' for usage.
+
Suggestions are automatically generated based on existing subcommands and use an implementation of Levenshtein distance. Every registered command that matches a minimum distance of 2 (ignoring case) will be displayed as a suggestion.
+If you need to disable suggestions or tweak the string distance in your command, use:
+command.DisableSuggestions = true
+
or
+command.SuggestionsMinimumDistance = 1
+
You can also explicitly set names for which a given command will be suggested using the SuggestFor
attribute. This allows suggestions for strings that are not close in terms of string distance, but make sense in your set of commands but for which
+you don’t want aliases. Example:
$ kubectl remove
+Error: unknown command "remove" for "kubectl"
+
+Did you mean this?
+ delete
+
+Run 'kubectl help' for usage.
+
+
+
+
+
+
+
+
+Cobra can generate documentation based on subcommands, flags, etc. +Read more about it in the docs generation documentation.
+ + + + + + + + +Cobra can generate a shell-completion file for the following shells: bash, zsh, fish, PowerShell. +If you add more information to your commands, these completions can be amazingly powerful and flexible. +Read more about it in Shell Completions.
+ + + + + + + + +Cobra makes use of the shell-completion system to define a framework allowing you to provide Active Help to your users. +Active Help are messages (hints, warnings, etc) printed as the program is being used. +Read more about it in Active Help.
+ + + +Active Help is a framework provided by Cobra which allows a program to define messages (hints, warnings, etc) that will be printed during program usage. It aims to make it easier for your users to learn how to use your program. If configured by the program, Active Help is printed when the user triggers shell completion.
+For example,
+bash-5.1$ helm repo add [tab]
+You must choose a name for the repo you are adding.
+
+bash-5.1$ bin/helm package [tab]
+Please specify the path to the chart to package
+
+bash-5.1$ bin/helm package [tab][tab]
+bin/ internal/ scripts/ pkg/ testdata/
+
Hint: A good place to use Active Help messages is when the normal completion system does not provide any suggestions. In such cases, Active Help nicely supplements the normal shell completions to guide the user in knowing what is expected by the program.
+ + + + + + + + +Active Help is currently only supported for the following shells:
+As Active Help uses the shell completion system, the implementation of Active Help messages is done by enhancing custom dynamic completions. If you are not familiar with dynamic completions, please refer to Shell Completions.
+Adding Active Help is done through the use of the cobra.AppendActiveHelp(...)
function, where the program repeatedly adds Active Help messages to the list of completions. Keep reading for details.
Adding Active Help when completing a noun is done within the ValidArgsFunction(...)
of a command. Please notice the use of cobra.AppendActiveHelp(...)
in the following example:
cmd := &cobra.Command{
+ Use: "add [NAME] [URL]",
+ Short: "add a chart repository",
+ Args: require.ExactArgs(2),
+ RunE: func(cmd *cobra.Command, args []string) error {
+ return addRepo(args)
+ },
+ ValidArgsFunction: func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {
+ var comps []string
+ if len(args) == 0 {
+ comps = cobra.AppendActiveHelp(comps, "You must choose a name for the repo you are adding")
+ } else if len(args) == 1 {
+ comps = cobra.AppendActiveHelp(comps, "You must specify the URL for the repo you are adding")
+ } else {
+ comps = cobra.AppendActiveHelp(comps, "This command does not take any more arguments")
+ }
+ return comps, cobra.ShellCompDirectiveNoFileComp
+ },
+}
+
The example above defines the completions (none, in this specific example) as well as the Active Help messages for the helm repo add
command. It yields the following behavior:
bash-5.1$ helm repo add [tab]
+You must choose a name for the repo you are adding
+
+bash-5.1$ helm repo add grafana [tab]
+You must specify the URL for the repo you are adding
+
+bash-5.1$ helm repo add grafana https://grafana.github.io/helm-charts [tab]
+This command does not take any more arguments
+
Hint: As can be seen in the above example, a good place to use Active Help messages is when the normal completion system does not provide any suggestions. In such cases, Active Help nicely supplements the normal shell completions.
+ + + + + + + + +Providing Active Help for flags is done in the same fashion as for nouns, but using the completion function registered for the flag. For example:
+_ = cmd.RegisterFlagCompletionFunc("version", func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {
+ if len(args) != 2 {
+ return cobra.AppendActiveHelp(nil, "You must first specify the chart to install before the --version flag can be completed"), cobra.ShellCompDirectiveNoFileComp
+ }
+ return compVersionFlag(args[1], toComplete)
+ })
+
The example above prints an Active Help message when not enough information was given by the user to complete the --version
flag.
bash-5.1$ bin/helm install myrelease --version 2.0.[tab]
+You must first specify the chart to install before the --version flag can be completed
+
+bash-5.1$ bin/helm install myrelease bitnami/solr --version 2.0.[tab][tab]
+2.0.1 2.0.2 2.0.3
+
+
+
+
+
+
+
+
+You may want to allow your users to disable Active Help or choose between different levels of Active Help. It is entirely up to the program to define the type of configurability of Active Help that it wants to offer, if any. +Allowing to configure Active Help is entirely optional; you can use Active Help in your program without doing anything about Active Help configuration.
+The way to configure Active Help is to use the program’s Active Help environment
+variable. That variable is named <PROGRAM>_ACTIVE_HELP
where <PROGRAM>
is the name of your
+program in uppercase with any -
replaced by an _
. The variable should be set by the user to whatever
+Active Help configuration values are supported by the program.
For example, say helm
has chosen to support three levels for Active Help: on
, off
, local
. Then a user
+would set the desired behavior to local
by doing export HELM_ACTIVE_HELP=local
in their shell.
For simplicity, when in cmd.ValidArgsFunction(...)
or a flag’s completion function, the program should read the
+Active Help configuration using the cobra.GetActiveHelpConfig(cmd)
function and select what Active Help messages
+should or should not be added (instead of reading the environment variable directly).
For example:
+ValidArgsFunction: func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {
+ activeHelpLevel := cobra.GetActiveHelpConfig(cmd)
+
+ var comps []string
+ if len(args) == 0 {
+ if activeHelpLevel != "off" {
+ comps = cobra.AppendActiveHelp(comps, "You must choose a name for the repo you are adding")
+ }
+ } else if len(args) == 1 {
+ if activeHelpLevel != "off" {
+ comps = cobra.AppendActiveHelp(comps, "You must specify the URL for the repo you are adding")
+ }
+ } else {
+ if activeHelpLevel == "local" {
+ comps = cobra.AppendActiveHelp(comps, "This command does not take any more arguments")
+ }
+ }
+ return comps, cobra.ShellCompDirectiveNoFileComp
+},
+
Note 1: If the <PROGRAM>_ACTIVE_HELP
environment variable is set to the string “0”, Cobra will automatically disable all Active Help output (even if some output was specified by the program using the cobra.AppendActiveHelp(...)
function). Using “0” can simplify your code in situations where you want to blindly disable Active Help without having to call cobra.GetActiveHelpConfig(cmd)
explicitly.
Note 2: If a user wants to disable Active Help for every single program based on Cobra, she can set the environment variable COBRA_ACTIVE_HELP
to “0”. In this case cobra.GetActiveHelpConfig(cmd)
will return “0” no matter what the variable <PROGRAM>_ACTIVE_HELP
is set to.
Note 3: If the user does not set <PROGRAM>_ACTIVE_HELP
or COBRA_ACTIVE_HELP
(which will be a common case), the default value for the Active Help configuration returned by cobra.GetActiveHelpConfig(cmd)
will be the empty string.
Cobra provides a default completion
command for programs that wish to use it.
+When using the default completion
command, Active Help is configurable in the same
+fashion as described above using environment variables. You may wish to document this in more
+details for your users.
Debugging your Active Help code is done in the same way as debugging your dynamic completion code, which is with Cobra’s hidden __complete
command. Please refer to debugging shell completion for details.
When debugging with the __complete
command, if you want to specify different Active Help configurations, you should use the active help environment variable. That variable is named <PROGRAM>_ACTIVE_HELP
where any -
is replaced by an _
. For example, we can test deactivating some Active Help as shown below:
$ HELM_ACTIVE_HELP=1 bin/helm __complete install wordpress bitnami/h<ENTER>
+bitnami/haproxy
+bitnami/harbor
+_activeHelp_ WARNING: cannot re-use a name that is still in use
+:0
+Completion ended with directive: ShellCompDirectiveDefault
+
+$ HELM_ACTIVE_HELP=0 bin/helm __complete install wordpress bitnami/h<ENTER>
+bitnami/haproxy
+bitnami/harbor
+:0
+Completion ended with directive: ShellCompDirectiveDefault
+
+
+
+
+
+
+
+
+
+
+Please refer to Shell Completions for details.
+ + + + + + + + +For backward compatibility, Cobra still supports its legacy dynamic completion solution (described below). Unlike the ValidArgsFunction
solution, the legacy solution will only work for Bash shell-completion and not for other shells. This legacy solution can be used along-side ValidArgsFunction
and RegisterFlagCompletionFunc()
, as long as both solutions are not used for the same command. This provides a path to gradually migrate from the legacy solution to the new solution.
Note: Cobra’s default completion
command uses bash completion V2. If you are currently using Cobra’s legacy dynamic completion solution, you should not use the default completion
command but continue using your own.
The legacy solution allows you to inject bash functions into the bash completion script. Those bash functions are responsible for providing the completion choices for your own completions.
+Some code that works in kubernetes:
+const (
+ bash_completion_func = `__kubectl_parse_get()
+{
+ local kubectl_output out
+ if kubectl_output=$(kubectl get --no-headers "$1" 2>/dev/null); then
+ out=($(echo "${kubectl_output}" | awk '{print $1}'))
+ COMPREPLY=( $( compgen -W "${out[*]}" -- "$cur" ) )
+ fi
+}
+
+__kubectl_get_resource()
+{
+ if [[ ${#nouns[@]} -eq 0 ]]; then
+ return 1
+ fi
+ __kubectl_parse_get ${nouns[${#nouns[@]} -1]}
+ if [[ $? -eq 0 ]]; then
+ return 0
+ fi
+}
+
+__kubectl_custom_func() {
+ case ${last_command} in
+ kubectl_get | kubectl_describe | kubectl_delete | kubectl_stop)
+ __kubectl_get_resource
+ return
+ ;;
+ *)
+ ;;
+ esac
+}
+`)
+
And then I set that in my command definition:
+cmds := &cobra.Command{
+ Use: "kubectl",
+ Short: "kubectl controls the Kubernetes cluster manager",
+ Long: `kubectl controls the Kubernetes cluster manager.
+
+Find more information at https://github.com/GoogleCloudPlatform/kubernetes.`,
+ Run: runHelp,
+ BashCompletionFunction: bash_completion_func,
+}
+
The BashCompletionFunction
option is really only valid/useful on the root command. Doing the above will cause __kubectl_custom_func()
(__<command-use>_custom_func()
) to be called when the built in processor was unable to find a solution. In the case of kubernetes a valid command might look something like kubectl get pod [mypod]
. If you type kubectl get pod [tab][tab]
the __kubectl_customc_func()
will run because the cobra.Command only understood “kubectl” and “get.” __kubectl_custom_func()
will see that the cobra.Command is “kubectl_get” and will thus call another helper __kubectl_get_resource()
. __kubectl_get_resource
will look at the ’nouns’ collected. In our example the only noun will be pod
. So it will call __kubectl_parse_get pod
. __kubectl_parse_get
will actually call out to kubernetes and get any pods. It will then set COMPREPLY
to valid pods!
Similarly, for flags:
+ annotation := make(map[string][]string)
+ annotation[cobra.BashCompCustom] = []string{"__kubectl_get_namespaces"}
+
+ flag := &pflag.Flag{
+ Name: "namespace",
+ Usage: usage,
+ Annotations: annotation,
+ }
+ cmd.Flags().AddFlag(flag)
+
In addition add the __kubectl_get_namespaces
implementation in the BashCompletionFunction
+value, e.g.:
__kubectl_get_namespaces()
+{
+ local template
+ template="{{ range .items }}{{ .metadata.name }} {{ end }}"
+ local kubectl_out
+ if kubectl_out=$(kubectl get -o template --template="${template}" namespace 2>/dev/null); then
+ COMPREPLY=( $( compgen -W "${kubectl_out}[*]" -- "$cur" ) )
+ fi
+}
+
Please refer to Shell Completions for details.
+ + + + + + + + + + +Please refer to Shell Completions for details.
+ + + + + + + + + + +Please refer to Shell Completions for details.
+ + + + + + + + +Cobra 1.1 standardized its zsh completion support to align it with its other shell completions. Although the API was kept backwards-compatible, some small changes in behavior were introduced.
+ + + + + + + + +See further below for more details on these deprecations.
+cmd.MarkZshCompPositionalArgumentFile(pos, []string{})
is no longer needed. It is therefore deprecated and silently ignored.cmd.MarkZshCompPositionalArgumentFile(pos, glob[])
is deprecated and silently ignored.
+ValidArgsFunction
with ShellCompDirectiveFilterFileExt
.cmd.MarkZshCompPositionalArgumentWords()
is deprecated and silently ignored.
+ValidArgsFunction
.Noun completion
+Old behavior | +New behavior | +
---|---|
No file completion by default (opposite of bash) | +File completion by default; use ValidArgsFunction with ShellCompDirectiveNoFileComp to turn off file completion on a per-argument basis |
+
Completion of flag names without the - prefix having been typed |
+Flag names are only completed if the user has typed the first - |
+
cmd.MarkZshCompPositionalArgumentFile(pos, []string{}) used to turn on file completion on a per-argument position basis |
+File completion for all arguments by default; cmd.MarkZshCompPositionalArgumentFile() is deprecated and silently ignored |
+
cmd.MarkZshCompPositionalArgumentFile(pos, glob[]) used to turn on file completion with glob filtering on a per-argument position basis (zsh-specific) |
+cmd.MarkZshCompPositionalArgumentFile() is deprecated and silently ignored; use ValidArgsFunction with ShellCompDirectiveFilterFileExt for file extension filtering (not full glob filtering) |
+
cmd.MarkZshCompPositionalArgumentWords(pos, words[]) used to provide completion choices on a per-argument position basis (zsh-specific) |
+cmd.MarkZshCompPositionalArgumentWords() is deprecated and silently ignored; use ValidArgsFunction to achieve the same behavior |
+
Flag-value completion
+Old behavior | +New behavior | +
---|---|
No file completion by default (opposite of bash) | +File completion by default; use RegisterFlagCompletionFunc() with ShellCompDirectiveNoFileComp to turn off file completion |
+
cmd.MarkFlagFilename(flag, []string{}) and similar used to turn on file completion |
+File completion by default; cmd.MarkFlagFilename(flag, []string{}) no longer needed in this context and silently ignored |
+
cmd.MarkFlagFilename(flag, glob[]) used to turn on file completion with glob filtering (syntax of []string{"*.yaml", "*.yml"} incompatible with bash) |
+Will continue to work, however, support for bash syntax is added and should be used instead so as to work for all shells ([]string{"yaml", "yml"} ) |
+
cmd.MarkFlagDirname(flag) only completes directories (zsh-specific) |
+Has been added for all shells | +
Completion of a flag name does not repeat, unless flag is of type *Array or *Slice (not supported by bash) |
+Retained for zsh and added to fish |
+
Completion of a flag name does not provide the = form (unlike bash) |
+Retained for zsh and added to fish |
+
Improvements
+ValidArgsFunction
and RegisterFlagCompletionFunc()
)=
form of flagsGenerating man pages from a cobra command is incredibly easy. An example is as follows:
+package main
+
+import (
+ "log"
+
+ "github.com/spf13/cobra"
+ "github.com/spf13/cobra/doc"
+)
+
+func main() {
+ cmd := &cobra.Command{
+ Use: "test",
+ Short: "my test program",
+ }
+ header := &doc.GenManHeader{
+ Title: "MINE",
+ Section: "3",
+ }
+ err := doc.GenManTree(cmd, header, "/tmp")
+ if err != nil {
+ log.Fatal(err)
+ }
+}
+
That will get you a man page /tmp/test.3
Generating Markdown pages from a cobra command is incredibly easy. An example is as follows:
+package main
+
+import (
+ "log"
+
+ "github.com/spf13/cobra"
+ "github.com/spf13/cobra/doc"
+)
+
+func main() {
+ cmd := &cobra.Command{
+ Use: "test",
+ Short: "my test program",
+ }
+ err := doc.GenMarkdownTree(cmd, "/tmp")
+ if err != nil {
+ log.Fatal(err)
+ }
+}
+
That will get you a Markdown document /tmp/test.md
This program can actually generate docs for the kubectl command in the kubernetes project
+package main
+
+import (
+ "log"
+ "io/ioutil"
+ "os"
+
+ "k8s.io/kubernetes/pkg/kubectl/cmd"
+ cmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
+
+ "github.com/spf13/cobra/doc"
+)
+
+func main() {
+ kubectl := cmd.NewKubectlCommand(cmdutil.NewFactory(nil), os.Stdin, ioutil.Discard, ioutil.Discard)
+ err := doc.GenMarkdownTree(kubectl, "./")
+ if err != nil {
+ log.Fatal(err)
+ }
+}
+
This will generate a whole series of files, one for each command in the tree, in the directory specified (in this case “./”)
+ + + + + + + + +You may wish to have more control over the output, or only generate for a single command, instead of the entire command tree. If this is the case you may prefer to GenMarkdown
instead of GenMarkdownTree
out := new(bytes.Buffer)
+ err := doc.GenMarkdown(cmd, out)
+ if err != nil {
+ log.Fatal(err)
+ }
+
This will write the markdown doc for ONLY “cmd” into the out, buffer.
+ + + + + + + + +Both GenMarkdown
and GenMarkdownTree
have alternate versions with callbacks to get some control of the output:
func GenMarkdownTreeCustom(cmd *Command, dir string, filePrepender, linkHandler func(string) string) error {
+ //...
+}
+
func GenMarkdownCustom(cmd *Command, out *bytes.Buffer, linkHandler func(string) string) error {
+ //...
+}
+
The filePrepender
will prepend the return value given the full filepath to the rendered Markdown file. A common use case is to add front matter to use the generated documentation with Hugo:
const fmTemplate = `---
+date: %s
+title: "%s"
+slug: %s
+url: %s
+---
+`
+
+filePrepender := func(filename string) string {
+ now := time.Now().Format(time.RFC3339)
+ name := filepath.Base(filename)
+ base := strings.TrimSuffix(name, path.Ext(name))
+ url := "/commands/" + strings.ToLower(base) + "/"
+ return fmt.Sprintf(fmTemplate, now, strings.Replace(base, "_", " ", -1), base, url)
+}
+
The linkHandler
can be used to customize the rendered internal links to the commands, given a filename:
linkHandler := func(name string) string {
+ base := strings.TrimSuffix(name, path.Ext(name))
+ return "/commands/" + strings.ToLower(base) + "/"
+}
+
Generating ReST pages from a cobra command is incredibly easy. An example is as follows:
+package main
+
+import (
+ "log"
+
+ "github.com/spf13/cobra"
+ "github.com/spf13/cobra/doc"
+)
+
+func main() {
+ cmd := &cobra.Command{
+ Use: "test",
+ Short: "my test program",
+ }
+ err := doc.GenReSTTree(cmd, "/tmp")
+ if err != nil {
+ log.Fatal(err)
+ }
+}
+
That will get you a ReST document /tmp/test.rst
This program can actually generate docs for the kubectl command in the kubernetes project
+package main
+
+import (
+ "log"
+ "io/ioutil"
+ "os"
+
+ "k8s.io/kubernetes/pkg/kubectl/cmd"
+ cmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
+
+ "github.com/spf13/cobra/doc"
+)
+
+func main() {
+ kubectl := cmd.NewKubectlCommand(cmdutil.NewFactory(nil), os.Stdin, ioutil.Discard, ioutil.Discard)
+ err := doc.GenReSTTree(kubectl, "./")
+ if err != nil {
+ log.Fatal(err)
+ }
+}
+
This will generate a whole series of files, one for each command in the tree, in the directory specified (in this case “./”)
+ + + + + + + + +You may wish to have more control over the output, or only generate for a single command, instead of the entire command tree. If this is the case you may prefer to GenReST
instead of GenReSTTree
out := new(bytes.Buffer)
+ err := doc.GenReST(cmd, out)
+ if err != nil {
+ log.Fatal(err)
+ }
+
This will write the ReST doc for ONLY “cmd” into the out, buffer.
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Both GenReST
and GenReSTTree
have alternate versions with callbacks to get some control of the output:
func GenReSTTreeCustom(cmd *Command, dir string, filePrepender func(string) string, linkHandler func(string, string) string) error {
+ //...
+}
+
func GenReSTCustom(cmd *Command, out *bytes.Buffer, linkHandler func(string, string) string) error {
+ //...
+}
+
The filePrepender
will prepend the return value given the full filepath to the rendered ReST file. A common use case is to add front matter to use the generated documentation with Hugo:
const fmTemplate = `---
+date: %s
+title: "%s"
+slug: %s
+url: %s
+---
+`
+filePrepender := func(filename string) string {
+ now := time.Now().Format(time.RFC3339)
+ name := filepath.Base(filename)
+ base := strings.TrimSuffix(name, path.Ext(name))
+ url := "/commands/" + strings.ToLower(base) + "/"
+ return fmt.Sprintf(fmTemplate, now, strings.Replace(base, "_", " ", -1), base, url)
+}
+
The linkHandler
can be used to customize the rendered links to the commands, given a command name and reference. This is useful while converting rst to html or while generating documentation with tools like Sphinx where :ref:
is used:
// Sphinx cross-referencing format
+linkHandler := func(name, ref string) string {
+ return fmt.Sprintf(":ref:`%s <%s>`", name, ref)
+}
+
Generating yaml files from a cobra command is incredibly easy. An example is as follows:
+package main
+
+import (
+ "log"
+
+ "github.com/spf13/cobra"
+ "github.com/spf13/cobra/doc"
+)
+
+func main() {
+ cmd := &cobra.Command{
+ Use: "test",
+ Short: "my test program",
+ }
+ err := doc.GenYamlTree(cmd, "/tmp")
+ if err != nil {
+ log.Fatal(err)
+ }
+}
+
That will get you a Yaml document /tmp/test.yaml
This program can actually generate docs for the kubectl command in the kubernetes project
+package main
+
+import (
+ "io/ioutil"
+ "log"
+ "os"
+
+ "k8s.io/kubernetes/pkg/kubectl/cmd"
+ cmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
+
+ "github.com/spf13/cobra/doc"
+)
+
+func main() {
+ kubectl := cmd.NewKubectlCommand(cmdutil.NewFactory(nil), os.Stdin, ioutil.Discard, ioutil.Discard)
+ err := doc.GenYamlTree(kubectl, "./")
+ if err != nil {
+ log.Fatal(err)
+ }
+}
+
This will generate a whole series of files, one for each command in the tree, in the directory specified (in this case “./”)
+ + + + + + + + +You may wish to have more control over the output, or only generate for a single command, instead of the entire command tree. If this is the case you may prefer to GenYaml
instead of GenYamlTree
out := new(bytes.Buffer)
+ doc.GenYaml(cmd, out)
+
This will write the yaml doc for ONLY “cmd” into the out, buffer.
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Both GenYaml
and GenYamlTree
have alternate versions with callbacks to get some control of the output:
func GenYamlTreeCustom(cmd *Command, dir string, filePrepender, linkHandler func(string) string) error {
+ //...
+}
+
func GenYamlCustom(cmd *Command, out *bytes.Buffer, linkHandler func(string) string) error {
+ //...
+}
+
The filePrepender
will prepend the return value given the full filepath to the rendered Yaml file. A common use case is to add front matter to use the generated documentation with Hugo:
const fmTemplate = `---
+date: %s
+title: "%s"
+slug: %s
+url: %s
+---
+`
+
+filePrepender := func(filename string) string {
+ now := time.Now().Format(time.RFC3339)
+ name := filepath.Base(filename)
+ base := strings.TrimSuffix(name, path.Ext(name))
+ url := "/commands/" + strings.ToLower(base) + "/"
+ return fmt.Sprintf(fmTemplate, now, strings.Replace(base, "_", " ", -1), base, url)
+}
+
The linkHandler
can be used to customize the rendered internal links to the commands, given a filename:
linkHandler := func(name string) string {
+ base := strings.TrimSuffix(name, path.Ext(name))
+ return "/commands/" + strings.ToLower(base) + "/"
+}
+
upctl
)While you are welcome to provide your own organization, typically a Cobra-based +application will follow the following organizational structure:
+ ▾ appName/
+ ▾ cmd/
+ add.go
+ your.go
+ commands.go
+ here.go
+ main.go
+
In a Cobra app, typically the main.go file is very bare. It serves one purpose: initializing Cobra.
+package main
+
+import (
+ "{pathToYourApp}/cmd"
+)
+
+func main() {
+ cmd.Execute()
+}
+
Cobra-CLI is its own program that will create your application and add any commands you want. +It’s the easiest way to incorporate Cobra into your application.
+For complete details on using the Cobra generator, please refer to The Cobra-CLI Generator README
+ + + + + + + + +To manually implement Cobra you need to create a bare main.go file and a rootCmd file. +You will optionally provide additional commands as you see fit.
+ + + + + + + + +Cobra doesn’t require any special constructors. Simply create your commands.
+Ideally you place this in app/cmd/root.go:
+var rootCmd = &cobra.Command{
+ Use: "hugo",
+ Short: "Hugo is a very fast static site generator",
+ Long: `A Fast and Flexible Static Site Generator built with
+ love by spf13 and friends in Go.
+ Complete documentation is available at https://gohugo.io/documentation/`,
+ Run: func(cmd *cobra.Command, args []string) {
+ // Do Stuff Here
+ },
+}
+
+func Execute() {
+ if err := rootCmd.Execute(); err != nil {
+ fmt.Fprintln(os.Stderr, err)
+ os.Exit(1)
+ }
+}
+
You will additionally define flags and handle configuration in your init() function.
+For example cmd/root.go:
+package cmd
+
+import (
+ "fmt"
+ "os"
+
+ "github.com/spf13/cobra"
+ "github.com/spf13/viper"
+)
+
+var (
+ // Used for flags.
+ cfgFile string
+ userLicense string
+
+ rootCmd = &cobra.Command{
+ Use: "cobra-cli",
+ Short: "A generator for Cobra based Applications",
+ Long: `Cobra is a CLI library for Go that empowers applications.
+This application is a tool to generate the needed files
+to quickly create a Cobra application.`,
+ }
+)
+
+// Execute executes the root command.
+func Execute() error {
+ return rootCmd.Execute()
+}
+
+func init() {
+ cobra.OnInitialize(initConfig)
+
+ rootCmd.PersistentFlags().StringVar(&cfgFile, "config", "", "config file (default is $HOME/.cobra.yaml)")
+ rootCmd.PersistentFlags().StringP("author", "a", "YOUR NAME", "author name for copyright attribution")
+ rootCmd.PersistentFlags().StringVarP(&userLicense, "license", "l", "", "name of license for the project")
+ rootCmd.PersistentFlags().Bool("viper", true, "use Viper for configuration")
+ viper.BindPFlag("author", rootCmd.PersistentFlags().Lookup("author"))
+ viper.BindPFlag("useViper", rootCmd.PersistentFlags().Lookup("viper"))
+ viper.SetDefault("author", "NAME HERE <EMAIL ADDRESS>")
+ viper.SetDefault("license", "apache")
+
+ rootCmd.AddCommand(addCmd)
+ rootCmd.AddCommand(initCmd)
+}
+
+func initConfig() {
+ if cfgFile != "" {
+ // Use config file from the flag.
+ viper.SetConfigFile(cfgFile)
+ } else {
+ // Find home directory.
+ home, err := os.UserHomeDir()
+ cobra.CheckErr(err)
+
+ // Search config in home directory with name ".cobra" (without extension).
+ viper.AddConfigPath(home)
+ viper.SetConfigType("yaml")
+ viper.SetConfigName(".cobra")
+ }
+
+ viper.AutomaticEnv()
+
+ if err := viper.ReadInConfig(); err == nil {
+ fmt.Println("Using config file:", viper.ConfigFileUsed())
+ }
+}
+
With the root command you need to have your main function execute it. +Execute should be run on the root for clarity, though it can be called on any command.
+In a Cobra app, typically the main.go file is very bare. It serves one purpose: to initialize Cobra.
+package main
+
+import (
+ "{pathToYourApp}/cmd"
+)
+
+func main() {
+ cmd.Execute()
+}
+
Additional commands can be defined and typically are each given their own file +inside of the cmd/ directory.
+If you wanted to create a version command you would create cmd/version.go and +populate it with the following:
+package cmd
+
+import (
+ "fmt"
+
+ "github.com/spf13/cobra"
+)
+
+func init() {
+ rootCmd.AddCommand(versionCmd)
+}
+
+var versionCmd = &cobra.Command{
+ Use: "version",
+ Short: "Print the version number of Hugo",
+ Long: `All software has versions. This is Hugo's`,
+ Run: func(cmd *cobra.Command, args []string) {
+ fmt.Println("Hugo Static Site Generator v0.9 -- HEAD")
+ },
+}
+
A command may have subcommands which in turn may have other subcommands. This is achieved by using
+AddCommand
. In some cases, especially in larger applications, each subcommand may be defined in
+its own go package.
The suggested approach is for the parent command to use AddCommand
to add its most immediate
+subcommands. For example, consider the following directory structure:
├── cmd
+│ ├── root.go
+│ └── sub1
+│ ├── sub1.go
+│ └── sub2
+│ ├── leafA.go
+│ ├── leafB.go
+│ └── sub2.go
+└── main.go
+
In this case:
+init
function of root.go
adds the command defined in sub1.go
to the root command.init
function of sub1.go
adds the command defined in sub2.go
to the sub1 command.init
function of sub2.go
adds the commands defined in leafA.go
and leafB.go
to the
+sub2 command.This approach ensures the subcommands are always included at compile time while avoiding cyclic +references.
+ + + + + + + + +If you wish to return an error to the caller of a command, RunE
can be used.
package cmd
+
+import (
+ "fmt"
+
+ "github.com/spf13/cobra"
+)
+
+func init() {
+ rootCmd.AddCommand(tryCmd)
+}
+
+var tryCmd = &cobra.Command{
+ Use: "try",
+ Short: "Try and possibly fail at something",
+ RunE: func(cmd *cobra.Command, args []string) error {
+ if err := someFunc(); err != nil {
+ return err
+ }
+ return nil
+ },
+}
+
The error can then be caught at the execute function call.
+ + + + + + + + +Flags provide modifiers to control how the action command operates.
+ + + + + + + + +Since the flags are defined and used in different locations, we need to +define a variable outside with the correct scope to assign the flag to +work with.
+var Verbose bool
+var Source string
+
There are two different approaches to assign a flag.
+ + + + + + + + +A flag can be ‘persistent’, meaning that this flag will be available to the +command it’s assigned to as well as every command under that command. For +global flags, assign a flag as a persistent flag on the root.
+rootCmd.PersistentFlags().BoolVarP(&Verbose, "verbose", "v", false, "verbose output")
+
A flag can also be assigned locally, which will only apply to that specific command.
+localCmd.Flags().StringVarP(&Source, "source", "s", "", "Source directory to read from")
+
By default, Cobra only parses local flags on the target command, and any local flags on
+parent commands are ignored. By enabling Command.TraverseChildren
, Cobra will
+parse local flags on each command before executing the target command.
command := cobra.Command{
+ Use: "print [OPTIONS] [COMMANDS]",
+ TraverseChildren: true,
+}
+
You can also bind your flags with viper:
+var author string
+
+func init() {
+ rootCmd.PersistentFlags().StringVar(&author, "author", "YOUR NAME", "Author name for copyright attribution")
+ viper.BindPFlag("author", rootCmd.PersistentFlags().Lookup("author"))
+}
+
In this example, the persistent flag author
is bound with viper
.
+Note: the variable author
will not be set to the value from config,
+when the --author
flag is provided by user.
More in viper documentation.
+ + + + + + + + +Flags are optional by default. If instead you wish your command to report an error +when a flag has not been set, mark it as required:
+rootCmd.Flags().StringVarP(&Region, "region", "r", "", "AWS region (required)")
+rootCmd.MarkFlagRequired("region")
+
Or, for persistent flags:
+rootCmd.PersistentFlags().StringVarP(&Region, "region", "r", "", "AWS region (required)")
+rootCmd.MarkPersistentFlagRequired("region")
+
If you have different flags that must be provided together (e.g. if they provide the --username
flag they MUST provide the --password
flag as well) then
+Cobra can enforce that requirement:
rootCmd.Flags().StringVarP(&u, "username", "u", "", "Username (required if password is set)")
+rootCmd.Flags().StringVarP(&pw, "password", "p", "", "Password (required if username is set)")
+rootCmd.MarkFlagsRequiredTogether("username", "password")
+
You can also prevent different flags from being provided together if they represent mutually
+exclusive options such as specifying an output format as either --json
or --yaml
but never both:
rootCmd.Flags().BoolVar(&ofJson, "json", false, "Output in JSON")
+rootCmd.Flags().BoolVar(&ofYaml, "yaml", false, "Output in YAML")
+rootCmd.MarkFlagsMutuallyExclusive("json", "yaml")
+
If you want to require at least one flag from a group to be present, you can use MarkFlagsOneRequired
.
+This can be combined with MarkFlagsMutuallyExclusive
to enforce exactly one flag from a given group:
rootCmd.Flags().BoolVar(&ofJson, "json", false, "Output in JSON")
+rootCmd.Flags().BoolVar(&ofYaml, "yaml", false, "Output in YAML")
+rootCmd.MarkFlagsOneRequired("json", "yaml")
+rootCmd.MarkFlagsMutuallyExclusive("json", "yaml")
+
In these cases:
+Validation of positional arguments can be specified using the Args
field of Command
.
+The following validators are built in:
NoArgs
- report an error if there are any positional args.ArbitraryArgs
- accept any number of args.MinimumNArgs(int)
- report an error if less than N positional args are provided.MaximumNArgs(int)
- report an error if more than N positional args are provided.ExactArgs(int)
- report an error if there are not exactly N positional args.RangeArgs(min, max)
- report an error if the number of args is not between min
and max
.OnlyValidArgs
- report an error if there are any positional args not specified in the ValidArgs
field of Command
, which can optionally be set to a list of valid values for positional args.If Args
is undefined or nil
, it defaults to ArbitraryArgs
.
Moreover, MatchAll(pargs ...PositionalArgs)
enables combining existing checks with arbitrary other checks.
+For instance, if you want to report an error if there are not exactly N positional args OR if there are any positional
+args that are not in the ValidArgs
field of Command
, you can call MatchAll
on ExactArgs
and OnlyValidArgs
, as
+shown below:
var cmd = &cobra.Command{
+ Short: "hello",
+ Args: cobra.MatchAll(cobra.ExactArgs(2), cobra.OnlyValidArgs),
+ Run: func(cmd *cobra.Command, args []string) {
+ fmt.Println("Hello, World!")
+ },
+}
+
It is possible to set any custom validator that satisfies func(cmd *cobra.Command, args []string) error
.
+For example:
var cmd = &cobra.Command{
+ Short: "hello",
+ Args: func(cmd *cobra.Command, args []string) error {
+ // Optionally run one of the validators provided by cobra
+ if err := cobra.MinimumNArgs(1)(cmd, args); err != nil {
+ return err
+ }
+ // Run the custom validation logic
+ if myapp.IsValidColor(args[0]) {
+ return nil
+ }
+ return fmt.Errorf("invalid color specified: %s", args[0])
+ },
+ Run: func(cmd *cobra.Command, args []string) {
+ fmt.Println("Hello, World!")
+ },
+}
+
In the example below, we have defined three commands. Two are at the top level +and one (cmdTimes) is a child of one of the top commands. In this case the root +is not executable, meaning that a subcommand is required. This is accomplished +by not providing a ‘Run’ for the ‘rootCmd’.
+We have only defined one flag for a single command.
+More documentation about flags is available at https://github.com/spf13/pflag
+package main
+
+import (
+ "fmt"
+ "strings"
+
+ "github.com/spf13/cobra"
+)
+
+func main() {
+ var echoTimes int
+
+ var cmdPrint = &cobra.Command{
+ Use: "print [string to print]",
+ Short: "Print anything to the screen",
+ Long: `print is for printing anything back to the screen.
+For many years people have printed back to the screen.`,
+ Args: cobra.MinimumNArgs(1),
+ Run: func(cmd *cobra.Command, args []string) {
+ fmt.Println("Print: " + strings.Join(args, " "))
+ },
+ }
+
+ var cmdEcho = &cobra.Command{
+ Use: "echo [string to echo]",
+ Short: "Echo anything to the screen",
+ Long: `echo is for echoing anything back.
+Echo works a lot like print, except it has a child command.`,
+ Args: cobra.MinimumNArgs(1),
+ Run: func(cmd *cobra.Command, args []string) {
+ fmt.Println("Echo: " + strings.Join(args, " "))
+ },
+ }
+
+ var cmdTimes = &cobra.Command{
+ Use: "times [string to echo]",
+ Short: "Echo anything to the screen more times",
+ Long: `echo things multiple times back to the user by providing
+a count and a string.`,
+ Args: cobra.MinimumNArgs(1),
+ Run: func(cmd *cobra.Command, args []string) {
+ for i := 0; i < echoTimes; i++ {
+ fmt.Println("Echo: " + strings.Join(args, " "))
+ }
+ },
+ }
+
+ cmdTimes.Flags().IntVarP(&echoTimes, "times", "t", 1, "times to echo the input")
+
+ var rootCmd = &cobra.Command{Use: "app"}
+ rootCmd.AddCommand(cmdPrint, cmdEcho)
+ cmdEcho.AddCommand(cmdTimes)
+ rootCmd.Execute()
+}
+
For a more complete example of a larger application, please checkout Hugo.
+ + + + + + + + +Cobra automatically adds a help command to your application when you have subcommands. +This will be called when a user runs ‘app help’. Additionally, help will also +support all other commands as input. Say, for instance, you have a command called +‘create’ without any additional configuration; Cobra will work when ‘app help +create’ is called. Every command will automatically have the ‘–help’ flag added.
+ + + + + + + + +The following output is automatically generated by Cobra. Nothing beyond the +command and flag definitions are needed.
+$ cobra-cli help
+
+Cobra is a CLI library for Go that empowers applications.
+This application is a tool to generate the needed files
+to quickly create a Cobra application.
+
+Usage:
+ cobra-cli [command]
+
+Available Commands:
+ add Add a command to a Cobra Application
+ completion Generate the autocompletion script for the specified shell
+ help Help about any command
+ init Initialize a Cobra Application
+
+Flags:
+ -a, --author string author name for copyright attribution (default "YOUR NAME")
+ --config string config file (default is $HOME/.cobra.yaml)
+ -h, --help help for cobra-cli
+ -l, --license string name of license for the project
+ --viper use Viper for configuration
+
+Use "cobra-cli [command] --help" for more information about a command.
+
+Help is just a command like any other. There is no special logic or behavior +around it. In fact, you can provide your own if you want.
+ + + + + + + + +Cobra supports grouping of available commands in the help output. To group commands, each group must be explicitly
+defined using AddGroup()
on the parent command. Then a subcommand can be added to a group using the GroupID
element
+of that subcommand. The groups will appear in the help output in the same order as they are defined using different
+calls to AddGroup()
. If you use the generated help
or completion
commands, you can set their group ids using
+SetHelpCommandGroupId()
and SetCompletionCommandGroupId()
on the root command, respectively.
You can provide your own Help command or your own template for the default command to use +with the following functions:
+cmd.SetHelpCommand(cmd *Command)
+cmd.SetHelpFunc(f func(*Command, []string))
+cmd.SetHelpTemplate(s string)
+
The latter two will also apply to any children commands.
+ + + + + + + + +When the user provides an invalid flag or invalid command, Cobra responds by +showing the user the ‘usage’.
+ + + + + + + + +You may recognize this from the help above. That’s because the default help +embeds the usage as part of its output.
+$ cobra-cli --invalid
+Error: unknown flag: --invalid
+Usage:
+ cobra-cli [command]
+
+Available Commands:
+ add Add a command to a Cobra Application
+ completion Generate the autocompletion script for the specified shell
+ help Help about any command
+ init Initialize a Cobra Application
+
+Flags:
+ -a, --author string author name for copyright attribution (default "YOUR NAME")
+ --config string config file (default is $HOME/.cobra.yaml)
+ -h, --help help for cobra-cli
+ -l, --license string name of license for the project
+ --viper use Viper for configuration
+
+Use "cobra [command] --help" for more information about a command.
+
+
+
+
+
+
+
+
+
+You can provide your own usage function or template for Cobra to use. +Like help, the function and template are overridable through public methods:
+cmd.SetUsageFunc(f func(*Command) error)
+cmd.SetUsageTemplate(s string)
+
Cobra adds a top-level ‘–version’ flag if the Version field is set on the root command.
+Running an application with the ‘–version’ flag will print the version to stdout using
+the version template. The template can be customized using the
+cmd.SetVersionTemplate(s string)
function.
It is possible to run functions before or after the main Run
function of your command. The PersistentPreRun
and PreRun
functions will be executed before Run
. PersistentPostRun
and PostRun
will be executed after Run
. The Persistent*Run
functions will be inherited by children if they do not declare their own. These functions are run in the following order:
PersistentPreRun
PreRun
Run
PostRun
PersistentPostRun
An example of two commands which use all of these features is below. When the subcommand is executed, it will run the root command’s PersistentPreRun
but not the root command’s PersistentPostRun
:
package main
+
+import (
+ "fmt"
+
+ "github.com/spf13/cobra"
+)
+
+func main() {
+
+ var rootCmd = &cobra.Command{
+ Use: "root [sub]",
+ Short: "My root command",
+ PersistentPreRun: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside rootCmd PersistentPreRun with args: %v\n", args)
+ },
+ PreRun: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside rootCmd PreRun with args: %v\n", args)
+ },
+ Run: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside rootCmd Run with args: %v\n", args)
+ },
+ PostRun: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside rootCmd PostRun with args: %v\n", args)
+ },
+ PersistentPostRun: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside rootCmd PersistentPostRun with args: %v\n", args)
+ },
+ }
+
+ var subCmd = &cobra.Command{
+ Use: "sub [no options!]",
+ Short: "My subcommand",
+ PreRun: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside subCmd PreRun with args: %v\n", args)
+ },
+ Run: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside subCmd Run with args: %v\n", args)
+ },
+ PostRun: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside subCmd PostRun with args: %v\n", args)
+ },
+ PersistentPostRun: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside subCmd PersistentPostRun with args: %v\n", args)
+ },
+ }
+
+ rootCmd.AddCommand(subCmd)
+
+ rootCmd.SetArgs([]string{""})
+ rootCmd.Execute()
+ fmt.Println()
+ rootCmd.SetArgs([]string{"sub", "arg1", "arg2"})
+ rootCmd.Execute()
+}
+
Output:
+Inside rootCmd PersistentPreRun with args: []
+Inside rootCmd PreRun with args: []
+Inside rootCmd Run with args: []
+Inside rootCmd PostRun with args: []
+Inside rootCmd PersistentPostRun with args: []
+
+Inside rootCmd PersistentPreRun with args: [arg1 arg2]
+Inside subCmd PreRun with args: [arg1 arg2]
+Inside subCmd Run with args: [arg1 arg2]
+Inside subCmd PostRun with args: [arg1 arg2]
+Inside subCmd PersistentPostRun with args: [arg1 arg2]
+
+
+
+
+
+
+
+
+Cobra will print automatic suggestions when “unknown command” errors happen. This allows Cobra to behave similarly to the git
command when a typo happens. For example:
$ hugo srever
+Error: unknown command "srever" for "hugo"
+
+Did you mean this?
+ server
+
+Run 'hugo --help' for usage.
+
Suggestions are automatically generated based on existing subcommands and use an implementation of Levenshtein distance. Every registered command that matches a minimum distance of 2 (ignoring case) will be displayed as a suggestion.
+If you need to disable suggestions or tweak the string distance in your command, use:
+command.DisableSuggestions = true
+
or
+command.SuggestionsMinimumDistance = 1
+
You can also explicitly set names for which a given command will be suggested using the SuggestFor
attribute. This allows suggestions for strings that are not close in terms of string distance, but make sense in your set of commands but for which
+you don’t want aliases. Example:
$ kubectl remove
+Error: unknown command "remove" for "kubectl"
+
+Did you mean this?
+ delete
+
+Run 'kubectl help' for usage.
+
+
+
+
+
+
+
+
+Cobra can generate documentation based on subcommands, flags, etc. +Read more about it in the docs generation documentation.
+ + + + + + + + +Cobra can generate a shell-completion file for the following shells: bash, zsh, fish, PowerShell. +If you add more information to your commands, these completions can be amazingly powerful and flexible. +Read more about it in Shell Completions.
+ + + + + + + + +Cobra makes use of the shell-completion system to define a framework allowing you to provide Active Help to your users. +Active Help are messages (hints, warnings, etc) printed as the program is being used. +Read more about it in Active Help.
+ + + +Active Help is a framework provided by Cobra which allows a program to define messages (hints, warnings, etc) that will be printed during program usage. It aims to make it easier for your users to learn how to use your program. If configured by the program, Active Help is printed when the user triggers shell completion.
+For example,
+bash-5.1$ helm repo add [tab]
+You must choose a name for the repo you are adding.
+
+bash-5.1$ bin/helm package [tab]
+Please specify the path to the chart to package
+
+bash-5.1$ bin/helm package [tab][tab]
+bin/ internal/ scripts/ pkg/ testdata/
+
Hint: A good place to use Active Help messages is when the normal completion system does not provide any suggestions. In such cases, Active Help nicely supplements the normal shell completions to guide the user in knowing what is expected by the program.
+ + + + + + + + +Active Help is currently only supported for the following shells:
+As Active Help uses the shell completion system, the implementation of Active Help messages is done by enhancing custom dynamic completions. If you are not familiar with dynamic completions, please refer to Shell Completions.
+Adding Active Help is done through the use of the cobra.AppendActiveHelp(...)
function, where the program repeatedly adds Active Help messages to the list of completions. Keep reading for details.
Adding Active Help when completing a noun is done within the ValidArgsFunction(...)
of a command. Please notice the use of cobra.AppendActiveHelp(...)
in the following example:
cmd := &cobra.Command{
+ Use: "add [NAME] [URL]",
+ Short: "add a chart repository",
+ Args: require.ExactArgs(2),
+ RunE: func(cmd *cobra.Command, args []string) error {
+ return addRepo(args)
+ },
+ ValidArgsFunction: func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {
+ var comps []string
+ if len(args) == 0 {
+ comps = cobra.AppendActiveHelp(comps, "You must choose a name for the repo you are adding")
+ } else if len(args) == 1 {
+ comps = cobra.AppendActiveHelp(comps, "You must specify the URL for the repo you are adding")
+ } else {
+ comps = cobra.AppendActiveHelp(comps, "This command does not take any more arguments")
+ }
+ return comps, cobra.ShellCompDirectiveNoFileComp
+ },
+}
+
The example above defines the completions (none, in this specific example) as well as the Active Help messages for the helm repo add
command. It yields the following behavior:
bash-5.1$ helm repo add [tab]
+You must choose a name for the repo you are adding
+
+bash-5.1$ helm repo add grafana [tab]
+You must specify the URL for the repo you are adding
+
+bash-5.1$ helm repo add grafana https://grafana.github.io/helm-charts [tab]
+This command does not take any more arguments
+
Hint: As can be seen in the above example, a good place to use Active Help messages is when the normal completion system does not provide any suggestions. In such cases, Active Help nicely supplements the normal shell completions.
+ + + + + + + + +Providing Active Help for flags is done in the same fashion as for nouns, but using the completion function registered for the flag. For example:
+_ = cmd.RegisterFlagCompletionFunc("version", func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {
+ if len(args) != 2 {
+ return cobra.AppendActiveHelp(nil, "You must first specify the chart to install before the --version flag can be completed"), cobra.ShellCompDirectiveNoFileComp
+ }
+ return compVersionFlag(args[1], toComplete)
+ })
+
The example above prints an Active Help message when not enough information was given by the user to complete the --version
flag.
bash-5.1$ bin/helm install myrelease --version 2.0.[tab]
+You must first specify the chart to install before the --version flag can be completed
+
+bash-5.1$ bin/helm install myrelease bitnami/solr --version 2.0.[tab][tab]
+2.0.1 2.0.2 2.0.3
+
+
+
+
+
+
+
+
+You may want to allow your users to disable Active Help or choose between different levels of Active Help. It is entirely up to the program to define the type of configurability of Active Help that it wants to offer, if any. +Allowing to configure Active Help is entirely optional; you can use Active Help in your program without doing anything about Active Help configuration.
+The way to configure Active Help is to use the program’s Active Help environment
+variable. That variable is named <PROGRAM>_ACTIVE_HELP
where <PROGRAM>
is the name of your
+program in uppercase with any -
replaced by an _
. The variable should be set by the user to whatever
+Active Help configuration values are supported by the program.
For example, say helm
has chosen to support three levels for Active Help: on
, off
, local
. Then a user
+would set the desired behavior to local
by doing export HELM_ACTIVE_HELP=local
in their shell.
For simplicity, when in cmd.ValidArgsFunction(...)
or a flag’s completion function, the program should read the
+Active Help configuration using the cobra.GetActiveHelpConfig(cmd)
function and select what Active Help messages
+should or should not be added (instead of reading the environment variable directly).
For example:
+ValidArgsFunction: func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {
+ activeHelpLevel := cobra.GetActiveHelpConfig(cmd)
+
+ var comps []string
+ if len(args) == 0 {
+ if activeHelpLevel != "off" {
+ comps = cobra.AppendActiveHelp(comps, "You must choose a name for the repo you are adding")
+ }
+ } else if len(args) == 1 {
+ if activeHelpLevel != "off" {
+ comps = cobra.AppendActiveHelp(comps, "You must specify the URL for the repo you are adding")
+ }
+ } else {
+ if activeHelpLevel == "local" {
+ comps = cobra.AppendActiveHelp(comps, "This command does not take any more arguments")
+ }
+ }
+ return comps, cobra.ShellCompDirectiveNoFileComp
+},
+
Note 1: If the <PROGRAM>_ACTIVE_HELP
environment variable is set to the string “0”, Cobra will automatically disable all Active Help output (even if some output was specified by the program using the cobra.AppendActiveHelp(...)
function). Using “0” can simplify your code in situations where you want to blindly disable Active Help without having to call cobra.GetActiveHelpConfig(cmd)
explicitly.
Note 2: If a user wants to disable Active Help for every single program based on Cobra, she can set the environment variable COBRA_ACTIVE_HELP
to “0”. In this case cobra.GetActiveHelpConfig(cmd)
will return “0” no matter what the variable <PROGRAM>_ACTIVE_HELP
is set to.
Note 3: If the user does not set <PROGRAM>_ACTIVE_HELP
or COBRA_ACTIVE_HELP
(which will be a common case), the default value for the Active Help configuration returned by cobra.GetActiveHelpConfig(cmd)
will be the empty string.
Cobra provides a default completion
command for programs that wish to use it.
+When using the default completion
command, Active Help is configurable in the same
+fashion as described above using environment variables. You may wish to document this in more
+details for your users.
Debugging your Active Help code is done in the same way as debugging your dynamic completion code, which is with Cobra’s hidden __complete
command. Please refer to debugging shell completion for details.
When debugging with the __complete
command, if you want to specify different Active Help configurations, you should use the active help environment variable. That variable is named <PROGRAM>_ACTIVE_HELP
where any -
is replaced by an _
. For example, we can test deactivating some Active Help as shown below:
$ HELM_ACTIVE_HELP=1 bin/helm __complete install wordpress bitnami/h<ENTER>
+bitnami/haproxy
+bitnami/harbor
+_activeHelp_ WARNING: cannot re-use a name that is still in use
+:0
+Completion ended with directive: ShellCompDirectiveDefault
+
+$ HELM_ACTIVE_HELP=0 bin/helm __complete install wordpress bitnami/h<ENTER>
+bitnami/haproxy
+bitnami/harbor
+:0
+Completion ended with directive: ShellCompDirectiveDefault
+
+
+
+
+
+
+
+
+
+
+Please refer to Shell Completions for details.
+ + + + + + + + +For backward compatibility, Cobra still supports its legacy dynamic completion solution (described below). Unlike the ValidArgsFunction
solution, the legacy solution will only work for Bash shell-completion and not for other shells. This legacy solution can be used along-side ValidArgsFunction
and RegisterFlagCompletionFunc()
, as long as both solutions are not used for the same command. This provides a path to gradually migrate from the legacy solution to the new solution.
Note: Cobra’s default completion
command uses bash completion V2. If you are currently using Cobra’s legacy dynamic completion solution, you should not use the default completion
command but continue using your own.
The legacy solution allows you to inject bash functions into the bash completion script. Those bash functions are responsible for providing the completion choices for your own completions.
+Some code that works in kubernetes:
+const (
+ bash_completion_func = `__kubectl_parse_get()
+{
+ local kubectl_output out
+ if kubectl_output=$(kubectl get --no-headers "$1" 2>/dev/null); then
+ out=($(echo "${kubectl_output}" | awk '{print $1}'))
+ COMPREPLY=( $( compgen -W "${out[*]}" -- "$cur" ) )
+ fi
+}
+
+__kubectl_get_resource()
+{
+ if [[ ${#nouns[@]} -eq 0 ]]; then
+ return 1
+ fi
+ __kubectl_parse_get ${nouns[${#nouns[@]} -1]}
+ if [[ $? -eq 0 ]]; then
+ return 0
+ fi
+}
+
+__kubectl_custom_func() {
+ case ${last_command} in
+ kubectl_get | kubectl_describe | kubectl_delete | kubectl_stop)
+ __kubectl_get_resource
+ return
+ ;;
+ *)
+ ;;
+ esac
+}
+`)
+
And then I set that in my command definition:
+cmds := &cobra.Command{
+ Use: "kubectl",
+ Short: "kubectl controls the Kubernetes cluster manager",
+ Long: `kubectl controls the Kubernetes cluster manager.
+
+Find more information at https://github.com/GoogleCloudPlatform/kubernetes.`,
+ Run: runHelp,
+ BashCompletionFunction: bash_completion_func,
+}
+
The BashCompletionFunction
option is really only valid/useful on the root command. Doing the above will cause __kubectl_custom_func()
(__<command-use>_custom_func()
) to be called when the built in processor was unable to find a solution. In the case of kubernetes a valid command might look something like kubectl get pod [mypod]
. If you type kubectl get pod [tab][tab]
the __kubectl_customc_func()
will run because the cobra.Command only understood “kubectl” and “get.” __kubectl_custom_func()
will see that the cobra.Command is “kubectl_get” and will thus call another helper __kubectl_get_resource()
. __kubectl_get_resource
will look at the ’nouns’ collected. In our example the only noun will be pod
. So it will call __kubectl_parse_get pod
. __kubectl_parse_get
will actually call out to kubernetes and get any pods. It will then set COMPREPLY
to valid pods!
Similarly, for flags:
+ annotation := make(map[string][]string)
+ annotation[cobra.BashCompCustom] = []string{"__kubectl_get_namespaces"}
+
+ flag := &pflag.Flag{
+ Name: "namespace",
+ Usage: usage,
+ Annotations: annotation,
+ }
+ cmd.Flags().AddFlag(flag)
+
In addition add the __kubectl_get_namespaces
implementation in the BashCompletionFunction
+value, e.g.:
__kubectl_get_namespaces()
+{
+ local template
+ template="{{ range .items }}{{ .metadata.name }} {{ end }}"
+ local kubectl_out
+ if kubectl_out=$(kubectl get -o template --template="${template}" namespace 2>/dev/null); then
+ COMPREPLY=( $( compgen -W "${kubectl_out}[*]" -- "$cur" ) )
+ fi
+}
+
Please refer to Shell Completions for details.
+ + + + + + + + + + +Please refer to Shell Completions for details.
+ + + + + + + + + + +Please refer to Shell Completions for details.
+ + + + + + + + +Cobra 1.1 standardized its zsh completion support to align it with its other shell completions. Although the API was kept backwards-compatible, some small changes in behavior were introduced.
+ + + + + + + + +See further below for more details on these deprecations.
+cmd.MarkZshCompPositionalArgumentFile(pos, []string{})
is no longer needed. It is therefore deprecated and silently ignored.cmd.MarkZshCompPositionalArgumentFile(pos, glob[])
is deprecated and silently ignored.
+ValidArgsFunction
with ShellCompDirectiveFilterFileExt
.cmd.MarkZshCompPositionalArgumentWords()
is deprecated and silently ignored.
+ValidArgsFunction
.Noun completion
+Old behavior | +New behavior | +
---|---|
No file completion by default (opposite of bash) | +File completion by default; use ValidArgsFunction with ShellCompDirectiveNoFileComp to turn off file completion on a per-argument basis |
+
Completion of flag names without the - prefix having been typed |
+Flag names are only completed if the user has typed the first - |
+
cmd.MarkZshCompPositionalArgumentFile(pos, []string{}) used to turn on file completion on a per-argument position basis |
+File completion for all arguments by default; cmd.MarkZshCompPositionalArgumentFile() is deprecated and silently ignored |
+
cmd.MarkZshCompPositionalArgumentFile(pos, glob[]) used to turn on file completion with glob filtering on a per-argument position basis (zsh-specific) |
+cmd.MarkZshCompPositionalArgumentFile() is deprecated and silently ignored; use ValidArgsFunction with ShellCompDirectiveFilterFileExt for file extension filtering (not full glob filtering) |
+
cmd.MarkZshCompPositionalArgumentWords(pos, words[]) used to provide completion choices on a per-argument position basis (zsh-specific) |
+cmd.MarkZshCompPositionalArgumentWords() is deprecated and silently ignored; use ValidArgsFunction to achieve the same behavior |
+
Flag-value completion
+Old behavior | +New behavior | +
---|---|
No file completion by default (opposite of bash) | +File completion by default; use RegisterFlagCompletionFunc() with ShellCompDirectiveNoFileComp to turn off file completion |
+
cmd.MarkFlagFilename(flag, []string{}) and similar used to turn on file completion |
+File completion by default; cmd.MarkFlagFilename(flag, []string{}) no longer needed in this context and silently ignored |
+
cmd.MarkFlagFilename(flag, glob[]) used to turn on file completion with glob filtering (syntax of []string{"*.yaml", "*.yml"} incompatible with bash) |
+Will continue to work, however, support for bash syntax is added and should be used instead so as to work for all shells ([]string{"yaml", "yml"} ) |
+
cmd.MarkFlagDirname(flag) only completes directories (zsh-specific) |
+Has been added for all shells | +
Completion of a flag name does not repeat, unless flag is of type *Array or *Slice (not supported by bash) |
+Retained for zsh and added to fish |
+
Completion of a flag name does not provide the = form (unlike bash) |
+Retained for zsh and added to fish |
+
Improvements
+ValidArgsFunction
and RegisterFlagCompletionFunc()
)=
form of flagsGenerating man pages from a cobra command is incredibly easy. An example is as follows:
+package main
+
+import (
+ "log"
+
+ "github.com/spf13/cobra"
+ "github.com/spf13/cobra/doc"
+)
+
+func main() {
+ cmd := &cobra.Command{
+ Use: "test",
+ Short: "my test program",
+ }
+ header := &doc.GenManHeader{
+ Title: "MINE",
+ Section: "3",
+ }
+ err := doc.GenManTree(cmd, header, "/tmp")
+ if err != nil {
+ log.Fatal(err)
+ }
+}
+
That will get you a man page /tmp/test.3
Generating Markdown pages from a cobra command is incredibly easy. An example is as follows:
+package main
+
+import (
+ "log"
+
+ "github.com/spf13/cobra"
+ "github.com/spf13/cobra/doc"
+)
+
+func main() {
+ cmd := &cobra.Command{
+ Use: "test",
+ Short: "my test program",
+ }
+ err := doc.GenMarkdownTree(cmd, "/tmp")
+ if err != nil {
+ log.Fatal(err)
+ }
+}
+
That will get you a Markdown document /tmp/test.md
This program can actually generate docs for the kubectl command in the kubernetes project
+package main
+
+import (
+ "log"
+ "io/ioutil"
+ "os"
+
+ "k8s.io/kubernetes/pkg/kubectl/cmd"
+ cmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
+
+ "github.com/spf13/cobra/doc"
+)
+
+func main() {
+ kubectl := cmd.NewKubectlCommand(cmdutil.NewFactory(nil), os.Stdin, ioutil.Discard, ioutil.Discard)
+ err := doc.GenMarkdownTree(kubectl, "./")
+ if err != nil {
+ log.Fatal(err)
+ }
+}
+
This will generate a whole series of files, one for each command in the tree, in the directory specified (in this case “./”)
+ + + + + + + + +You may wish to have more control over the output, or only generate for a single command, instead of the entire command tree. If this is the case you may prefer to GenMarkdown
instead of GenMarkdownTree
out := new(bytes.Buffer)
+ err := doc.GenMarkdown(cmd, out)
+ if err != nil {
+ log.Fatal(err)
+ }
+
This will write the markdown doc for ONLY “cmd” into the out, buffer.
+ + + + + + + + +Both GenMarkdown
and GenMarkdownTree
have alternate versions with callbacks to get some control of the output:
func GenMarkdownTreeCustom(cmd *Command, dir string, filePrepender, linkHandler func(string) string) error {
+ //...
+}
+
func GenMarkdownCustom(cmd *Command, out *bytes.Buffer, linkHandler func(string) string) error {
+ //...
+}
+
The filePrepender
will prepend the return value given the full filepath to the rendered Markdown file. A common use case is to add front matter to use the generated documentation with Hugo:
const fmTemplate = `---
+date: %s
+title: "%s"
+slug: %s
+url: %s
+---
+`
+
+filePrepender := func(filename string) string {
+ now := time.Now().Format(time.RFC3339)
+ name := filepath.Base(filename)
+ base := strings.TrimSuffix(name, path.Ext(name))
+ url := "/commands/" + strings.ToLower(base) + "/"
+ return fmt.Sprintf(fmTemplate, now, strings.Replace(base, "_", " ", -1), base, url)
+}
+
The linkHandler
can be used to customize the rendered internal links to the commands, given a filename:
linkHandler := func(name string) string {
+ base := strings.TrimSuffix(name, path.Ext(name))
+ return "/commands/" + strings.ToLower(base) + "/"
+}
+
Generating ReST pages from a cobra command is incredibly easy. An example is as follows:
+package main
+
+import (
+ "log"
+
+ "github.com/spf13/cobra"
+ "github.com/spf13/cobra/doc"
+)
+
+func main() {
+ cmd := &cobra.Command{
+ Use: "test",
+ Short: "my test program",
+ }
+ err := doc.GenReSTTree(cmd, "/tmp")
+ if err != nil {
+ log.Fatal(err)
+ }
+}
+
That will get you a ReST document /tmp/test.rst
This program can actually generate docs for the kubectl command in the kubernetes project
+package main
+
+import (
+ "log"
+ "io/ioutil"
+ "os"
+
+ "k8s.io/kubernetes/pkg/kubectl/cmd"
+ cmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
+
+ "github.com/spf13/cobra/doc"
+)
+
+func main() {
+ kubectl := cmd.NewKubectlCommand(cmdutil.NewFactory(nil), os.Stdin, ioutil.Discard, ioutil.Discard)
+ err := doc.GenReSTTree(kubectl, "./")
+ if err != nil {
+ log.Fatal(err)
+ }
+}
+
This will generate a whole series of files, one for each command in the tree, in the directory specified (in this case “./”)
+ + + + + + + + +You may wish to have more control over the output, or only generate for a single command, instead of the entire command tree. If this is the case you may prefer to GenReST
instead of GenReSTTree
out := new(bytes.Buffer)
+ err := doc.GenReST(cmd, out)
+ if err != nil {
+ log.Fatal(err)
+ }
+
This will write the ReST doc for ONLY “cmd” into the out, buffer.
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Both GenReST
and GenReSTTree
have alternate versions with callbacks to get some control of the output:
func GenReSTTreeCustom(cmd *Command, dir string, filePrepender func(string) string, linkHandler func(string, string) string) error {
+ //...
+}
+
func GenReSTCustom(cmd *Command, out *bytes.Buffer, linkHandler func(string, string) string) error {
+ //...
+}
+
The filePrepender
will prepend the return value given the full filepath to the rendered ReST file. A common use case is to add front matter to use the generated documentation with Hugo:
const fmTemplate = `---
+date: %s
+title: "%s"
+slug: %s
+url: %s
+---
+`
+filePrepender := func(filename string) string {
+ now := time.Now().Format(time.RFC3339)
+ name := filepath.Base(filename)
+ base := strings.TrimSuffix(name, path.Ext(name))
+ url := "/commands/" + strings.ToLower(base) + "/"
+ return fmt.Sprintf(fmTemplate, now, strings.Replace(base, "_", " ", -1), base, url)
+}
+
The linkHandler
can be used to customize the rendered links to the commands, given a command name and reference. This is useful while converting rst to html or while generating documentation with tools like Sphinx where :ref:
is used:
// Sphinx cross-referencing format
+linkHandler := func(name, ref string) string {
+ return fmt.Sprintf(":ref:`%s <%s>`", name, ref)
+}
+
Generating yaml files from a cobra command is incredibly easy. An example is as follows:
+package main
+
+import (
+ "log"
+
+ "github.com/spf13/cobra"
+ "github.com/spf13/cobra/doc"
+)
+
+func main() {
+ cmd := &cobra.Command{
+ Use: "test",
+ Short: "my test program",
+ }
+ err := doc.GenYamlTree(cmd, "/tmp")
+ if err != nil {
+ log.Fatal(err)
+ }
+}
+
That will get you a Yaml document /tmp/test.yaml
This program can actually generate docs for the kubectl command in the kubernetes project
+package main
+
+import (
+ "io/ioutil"
+ "log"
+ "os"
+
+ "k8s.io/kubernetes/pkg/kubectl/cmd"
+ cmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
+
+ "github.com/spf13/cobra/doc"
+)
+
+func main() {
+ kubectl := cmd.NewKubectlCommand(cmdutil.NewFactory(nil), os.Stdin, ioutil.Discard, ioutil.Discard)
+ err := doc.GenYamlTree(kubectl, "./")
+ if err != nil {
+ log.Fatal(err)
+ }
+}
+
This will generate a whole series of files, one for each command in the tree, in the directory specified (in this case “./”)
+ + + + + + + + +You may wish to have more control over the output, or only generate for a single command, instead of the entire command tree. If this is the case you may prefer to GenYaml
instead of GenYamlTree
out := new(bytes.Buffer)
+ doc.GenYaml(cmd, out)
+
This will write the yaml doc for ONLY “cmd” into the out, buffer.
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Both GenYaml
and GenYamlTree
have alternate versions with callbacks to get some control of the output:
func GenYamlTreeCustom(cmd *Command, dir string, filePrepender, linkHandler func(string) string) error {
+ //...
+}
+
func GenYamlCustom(cmd *Command, out *bytes.Buffer, linkHandler func(string) string) error {
+ //...
+}
+
The filePrepender
will prepend the return value given the full filepath to the rendered Yaml file. A common use case is to add front matter to use the generated documentation with Hugo:
const fmTemplate = `---
+date: %s
+title: "%s"
+slug: %s
+url: %s
+---
+`
+
+filePrepender := func(filename string) string {
+ now := time.Now().Format(time.RFC3339)
+ name := filepath.Base(filename)
+ base := strings.TrimSuffix(name, path.Ext(name))
+ url := "/commands/" + strings.ToLower(base) + "/"
+ return fmt.Sprintf(fmTemplate, now, strings.Replace(base, "_", " ", -1), base, url)
+}
+
The linkHandler
can be used to customize the rendered internal links to the commands, given a filename:
linkHandler := func(name string) string {
+ base := strings.TrimSuffix(name, path.Ext(name))
+ return "/commands/" + strings.ToLower(base) + "/"
+}
+
upctl
)While you are welcome to provide your own organization, typically a Cobra-based +application will follow the following organizational structure:
+ ▾ appName/
+ ▾ cmd/
+ add.go
+ your.go
+ commands.go
+ here.go
+ main.go
+
In a Cobra app, typically the main.go file is very bare. It serves one purpose: initializing Cobra.
+package main
+
+import (
+ "{pathToYourApp}/cmd"
+)
+
+func main() {
+ cmd.Execute()
+}
+
Cobra-CLI is its own program that will create your application and add any commands you want. +It’s the easiest way to incorporate Cobra into your application.
+For complete details on using the Cobra generator, please refer to The Cobra-CLI Generator README
+ + + + + + + + +To manually implement Cobra you need to create a bare main.go file and a rootCmd file. +You will optionally provide additional commands as you see fit.
+ + + + + + + + +Cobra doesn’t require any special constructors. Simply create your commands.
+Ideally you place this in app/cmd/root.go:
+var rootCmd = &cobra.Command{
+ Use: "hugo",
+ Short: "Hugo is a very fast static site generator",
+ Long: `A Fast and Flexible Static Site Generator built with
+ love by spf13 and friends in Go.
+ Complete documentation is available at https://gohugo.io/documentation/`,
+ Run: func(cmd *cobra.Command, args []string) {
+ // Do Stuff Here
+ },
+}
+
+func Execute() {
+ if err := rootCmd.Execute(); err != nil {
+ fmt.Fprintln(os.Stderr, err)
+ os.Exit(1)
+ }
+}
+
You will additionally define flags and handle configuration in your init() function.
+For example cmd/root.go:
+package cmd
+
+import (
+ "fmt"
+ "os"
+
+ "github.com/spf13/cobra"
+ "github.com/spf13/viper"
+)
+
+var (
+ // Used for flags.
+ cfgFile string
+ userLicense string
+
+ rootCmd = &cobra.Command{
+ Use: "cobra-cli",
+ Short: "A generator for Cobra based Applications",
+ Long: `Cobra is a CLI library for Go that empowers applications.
+This application is a tool to generate the needed files
+to quickly create a Cobra application.`,
+ }
+)
+
+// Execute executes the root command.
+func Execute() error {
+ return rootCmd.Execute()
+}
+
+func init() {
+ cobra.OnInitialize(initConfig)
+
+ rootCmd.PersistentFlags().StringVar(&cfgFile, "config", "", "config file (default is $HOME/.cobra.yaml)")
+ rootCmd.PersistentFlags().StringP("author", "a", "YOUR NAME", "author name for copyright attribution")
+ rootCmd.PersistentFlags().StringVarP(&userLicense, "license", "l", "", "name of license for the project")
+ rootCmd.PersistentFlags().Bool("viper", true, "use Viper for configuration")
+ viper.BindPFlag("author", rootCmd.PersistentFlags().Lookup("author"))
+ viper.BindPFlag("useViper", rootCmd.PersistentFlags().Lookup("viper"))
+ viper.SetDefault("author", "NAME HERE <EMAIL ADDRESS>")
+ viper.SetDefault("license", "apache")
+
+ rootCmd.AddCommand(addCmd)
+ rootCmd.AddCommand(initCmd)
+}
+
+func initConfig() {
+ if cfgFile != "" {
+ // Use config file from the flag.
+ viper.SetConfigFile(cfgFile)
+ } else {
+ // Find home directory.
+ home, err := os.UserHomeDir()
+ cobra.CheckErr(err)
+
+ // Search config in home directory with name ".cobra" (without extension).
+ viper.AddConfigPath(home)
+ viper.SetConfigType("yaml")
+ viper.SetConfigName(".cobra")
+ }
+
+ viper.AutomaticEnv()
+
+ if err := viper.ReadInConfig(); err == nil {
+ fmt.Println("Using config file:", viper.ConfigFileUsed())
+ }
+}
+
With the root command you need to have your main function execute it. +Execute should be run on the root for clarity, though it can be called on any command.
+In a Cobra app, typically the main.go file is very bare. It serves one purpose: to initialize Cobra.
+package main
+
+import (
+ "{pathToYourApp}/cmd"
+)
+
+func main() {
+ cmd.Execute()
+}
+
Additional commands can be defined and typically are each given their own file +inside of the cmd/ directory.
+If you wanted to create a version command you would create cmd/version.go and +populate it with the following:
+package cmd
+
+import (
+ "fmt"
+
+ "github.com/spf13/cobra"
+)
+
+func init() {
+ rootCmd.AddCommand(versionCmd)
+}
+
+var versionCmd = &cobra.Command{
+ Use: "version",
+ Short: "Print the version number of Hugo",
+ Long: `All software has versions. This is Hugo's`,
+ Run: func(cmd *cobra.Command, args []string) {
+ fmt.Println("Hugo Static Site Generator v0.9 -- HEAD")
+ },
+}
+
A command may have subcommands which in turn may have other subcommands. This is achieved by using
+AddCommand
. In some cases, especially in larger applications, each subcommand may be defined in
+its own go package.
The suggested approach is for the parent command to use AddCommand
to add its most immediate
+subcommands. For example, consider the following directory structure:
├── cmd
+│ ├── root.go
+│ └── sub1
+│ ├── sub1.go
+│ └── sub2
+│ ├── leafA.go
+│ ├── leafB.go
+│ └── sub2.go
+└── main.go
+
In this case:
+init
function of root.go
adds the command defined in sub1.go
to the root command.init
function of sub1.go
adds the command defined in sub2.go
to the sub1 command.init
function of sub2.go
adds the commands defined in leafA.go
and leafB.go
to the
+sub2 command.This approach ensures the subcommands are always included at compile time while avoiding cyclic +references.
+ + + + + + + + +If you wish to return an error to the caller of a command, RunE
can be used.
package cmd
+
+import (
+ "fmt"
+
+ "github.com/spf13/cobra"
+)
+
+func init() {
+ rootCmd.AddCommand(tryCmd)
+}
+
+var tryCmd = &cobra.Command{
+ Use: "try",
+ Short: "Try and possibly fail at something",
+ RunE: func(cmd *cobra.Command, args []string) error {
+ if err := someFunc(); err != nil {
+ return err
+ }
+ return nil
+ },
+}
+
The error can then be caught at the execute function call.
+ + + + + + + + +Flags provide modifiers to control how the action command operates.
+ + + + + + + + +Since the flags are defined and used in different locations, we need to +define a variable outside with the correct scope to assign the flag to +work with.
+var Verbose bool
+var Source string
+
There are two different approaches to assign a flag.
+ + + + + + + + +A flag can be ‘persistent’, meaning that this flag will be available to the +command it’s assigned to as well as every command under that command. For +global flags, assign a flag as a persistent flag on the root.
+rootCmd.PersistentFlags().BoolVarP(&Verbose, "verbose", "v", false, "verbose output")
+
A flag can also be assigned locally, which will only apply to that specific command.
+localCmd.Flags().StringVarP(&Source, "source", "s", "", "Source directory to read from")
+
By default, Cobra only parses local flags on the target command, and any local flags on
+parent commands are ignored. By enabling Command.TraverseChildren
, Cobra will
+parse local flags on each command before executing the target command.
command := cobra.Command{
+ Use: "print [OPTIONS] [COMMANDS]",
+ TraverseChildren: true,
+}
+
You can also bind your flags with viper:
+var author string
+
+func init() {
+ rootCmd.PersistentFlags().StringVar(&author, "author", "YOUR NAME", "Author name for copyright attribution")
+ viper.BindPFlag("author", rootCmd.PersistentFlags().Lookup("author"))
+}
+
In this example, the persistent flag author
is bound with viper
.
+Note: the variable author
will not be set to the value from config,
+when the --author
flag is provided by user.
More in viper documentation.
+ + + + + + + + +Flags are optional by default. If instead you wish your command to report an error +when a flag has not been set, mark it as required:
+rootCmd.Flags().StringVarP(&Region, "region", "r", "", "AWS region (required)")
+rootCmd.MarkFlagRequired("region")
+
Or, for persistent flags:
+rootCmd.PersistentFlags().StringVarP(&Region, "region", "r", "", "AWS region (required)")
+rootCmd.MarkPersistentFlagRequired("region")
+
If you have different flags that must be provided together (e.g. if they provide the --username
flag they MUST provide the --password
flag as well) then
+Cobra can enforce that requirement:
rootCmd.Flags().StringVarP(&u, "username", "u", "", "Username (required if password is set)")
+rootCmd.Flags().StringVarP(&pw, "password", "p", "", "Password (required if username is set)")
+rootCmd.MarkFlagsRequiredTogether("username", "password")
+
You can also prevent different flags from being provided together if they represent mutually
+exclusive options such as specifying an output format as either --json
or --yaml
but never both:
rootCmd.Flags().BoolVar(&ofJson, "json", false, "Output in JSON")
+rootCmd.Flags().BoolVar(&ofYaml, "yaml", false, "Output in YAML")
+rootCmd.MarkFlagsMutuallyExclusive("json", "yaml")
+
If you want to require at least one flag from a group to be present, you can use MarkFlagsOneRequired
.
+This can be combined with MarkFlagsMutuallyExclusive
to enforce exactly one flag from a given group:
rootCmd.Flags().BoolVar(&ofJson, "json", false, "Output in JSON")
+rootCmd.Flags().BoolVar(&ofYaml, "yaml", false, "Output in YAML")
+rootCmd.MarkFlagsOneRequired("json", "yaml")
+rootCmd.MarkFlagsMutuallyExclusive("json", "yaml")
+
In these cases:
+Validation of positional arguments can be specified using the Args
field of Command
.
+The following validators are built in:
NoArgs
- report an error if there are any positional args.ArbitraryArgs
- accept any number of args.MinimumNArgs(int)
- report an error if less than N positional args are provided.MaximumNArgs(int)
- report an error if more than N positional args are provided.ExactArgs(int)
- report an error if there are not exactly N positional args.RangeArgs(min, max)
- report an error if the number of args is not between min
and max
.OnlyValidArgs
- report an error if there are any positional args not specified in the ValidArgs
field of Command
, which can optionally be set to a list of valid values for positional args.If Args
is undefined or nil
, it defaults to ArbitraryArgs
.
Moreover, MatchAll(pargs ...PositionalArgs)
enables combining existing checks with arbitrary other checks.
+For instance, if you want to report an error if there are not exactly N positional args OR if there are any positional
+args that are not in the ValidArgs
field of Command
, you can call MatchAll
on ExactArgs
and OnlyValidArgs
, as
+shown below:
var cmd = &cobra.Command{
+ Short: "hello",
+ Args: cobra.MatchAll(cobra.ExactArgs(2), cobra.OnlyValidArgs),
+ Run: func(cmd *cobra.Command, args []string) {
+ fmt.Println("Hello, World!")
+ },
+}
+
It is possible to set any custom validator that satisfies func(cmd *cobra.Command, args []string) error
.
+For example:
var cmd = &cobra.Command{
+ Short: "hello",
+ Args: func(cmd *cobra.Command, args []string) error {
+ // Optionally run one of the validators provided by cobra
+ if err := cobra.MinimumNArgs(1)(cmd, args); err != nil {
+ return err
+ }
+ // Run the custom validation logic
+ if myapp.IsValidColor(args[0]) {
+ return nil
+ }
+ return fmt.Errorf("invalid color specified: %s", args[0])
+ },
+ Run: func(cmd *cobra.Command, args []string) {
+ fmt.Println("Hello, World!")
+ },
+}
+
In the example below, we have defined three commands. Two are at the top level +and one (cmdTimes) is a child of one of the top commands. In this case the root +is not executable, meaning that a subcommand is required. This is accomplished +by not providing a ‘Run’ for the ‘rootCmd’.
+We have only defined one flag for a single command.
+More documentation about flags is available at https://github.com/spf13/pflag
+package main
+
+import (
+ "fmt"
+ "strings"
+
+ "github.com/spf13/cobra"
+)
+
+func main() {
+ var echoTimes int
+
+ var cmdPrint = &cobra.Command{
+ Use: "print [string to print]",
+ Short: "Print anything to the screen",
+ Long: `print is for printing anything back to the screen.
+For many years people have printed back to the screen.`,
+ Args: cobra.MinimumNArgs(1),
+ Run: func(cmd *cobra.Command, args []string) {
+ fmt.Println("Print: " + strings.Join(args, " "))
+ },
+ }
+
+ var cmdEcho = &cobra.Command{
+ Use: "echo [string to echo]",
+ Short: "Echo anything to the screen",
+ Long: `echo is for echoing anything back.
+Echo works a lot like print, except it has a child command.`,
+ Args: cobra.MinimumNArgs(1),
+ Run: func(cmd *cobra.Command, args []string) {
+ fmt.Println("Echo: " + strings.Join(args, " "))
+ },
+ }
+
+ var cmdTimes = &cobra.Command{
+ Use: "times [string to echo]",
+ Short: "Echo anything to the screen more times",
+ Long: `echo things multiple times back to the user by providing
+a count and a string.`,
+ Args: cobra.MinimumNArgs(1),
+ Run: func(cmd *cobra.Command, args []string) {
+ for i := 0; i < echoTimes; i++ {
+ fmt.Println("Echo: " + strings.Join(args, " "))
+ }
+ },
+ }
+
+ cmdTimes.Flags().IntVarP(&echoTimes, "times", "t", 1, "times to echo the input")
+
+ var rootCmd = &cobra.Command{Use: "app"}
+ rootCmd.AddCommand(cmdPrint, cmdEcho)
+ cmdEcho.AddCommand(cmdTimes)
+ rootCmd.Execute()
+}
+
For a more complete example of a larger application, please checkout Hugo.
+ + + + + + + + +Cobra automatically adds a help command to your application when you have subcommands. +This will be called when a user runs ‘app help’. Additionally, help will also +support all other commands as input. Say, for instance, you have a command called +‘create’ without any additional configuration; Cobra will work when ‘app help +create’ is called. Every command will automatically have the ‘–help’ flag added.
+ + + + + + + + +The following output is automatically generated by Cobra. Nothing beyond the +command and flag definitions are needed.
+$ cobra-cli help
+
+Cobra is a CLI library for Go that empowers applications.
+This application is a tool to generate the needed files
+to quickly create a Cobra application.
+
+Usage:
+ cobra-cli [command]
+
+Available Commands:
+ add Add a command to a Cobra Application
+ completion Generate the autocompletion script for the specified shell
+ help Help about any command
+ init Initialize a Cobra Application
+
+Flags:
+ -a, --author string author name for copyright attribution (default "YOUR NAME")
+ --config string config file (default is $HOME/.cobra.yaml)
+ -h, --help help for cobra-cli
+ -l, --license string name of license for the project
+ --viper use Viper for configuration
+
+Use "cobra-cli [command] --help" for more information about a command.
+
+Help is just a command like any other. There is no special logic or behavior +around it. In fact, you can provide your own if you want.
+ + + + + + + + +Cobra supports grouping of available commands in the help output. To group commands, each group must be explicitly
+defined using AddGroup()
on the parent command. Then a subcommand can be added to a group using the GroupID
element
+of that subcommand. The groups will appear in the help output in the same order as they are defined using different
+calls to AddGroup()
. If you use the generated help
or completion
commands, you can set their group ids using
+SetHelpCommandGroupId()
and SetCompletionCommandGroupId()
on the root command, respectively.
You can provide your own Help command or your own template for the default command to use +with the following functions:
+cmd.SetHelpCommand(cmd *Command)
+cmd.SetHelpFunc(f func(*Command, []string))
+cmd.SetHelpTemplate(s string)
+
The latter two will also apply to any children commands.
+ + + + + + + + +When the user provides an invalid flag or invalid command, Cobra responds by +showing the user the ‘usage’.
+ + + + + + + + +You may recognize this from the help above. That’s because the default help +embeds the usage as part of its output.
+$ cobra-cli --invalid
+Error: unknown flag: --invalid
+Usage:
+ cobra-cli [command]
+
+Available Commands:
+ add Add a command to a Cobra Application
+ completion Generate the autocompletion script for the specified shell
+ help Help about any command
+ init Initialize a Cobra Application
+
+Flags:
+ -a, --author string author name for copyright attribution (default "YOUR NAME")
+ --config string config file (default is $HOME/.cobra.yaml)
+ -h, --help help for cobra-cli
+ -l, --license string name of license for the project
+ --viper use Viper for configuration
+
+Use "cobra [command] --help" for more information about a command.
+
+
+
+
+
+
+
+
+
+You can provide your own usage function or template for Cobra to use. +Like help, the function and template are overridable through public methods:
+cmd.SetUsageFunc(f func(*Command) error)
+cmd.SetUsageTemplate(s string)
+
Cobra adds a top-level ‘–version’ flag if the Version field is set on the root command.
+Running an application with the ‘–version’ flag will print the version to stdout using
+the version template. The template can be customized using the
+cmd.SetVersionTemplate(s string)
function.
It is possible to run functions before or after the main Run
function of your command. The PersistentPreRun
and PreRun
functions will be executed before Run
. PersistentPostRun
and PostRun
will be executed after Run
. The Persistent*Run
functions will be inherited by children if they do not declare their own. These functions are run in the following order:
PersistentPreRun
PreRun
Run
PostRun
PersistentPostRun
An example of two commands which use all of these features is below. When the subcommand is executed, it will run the root command’s PersistentPreRun
but not the root command’s PersistentPostRun
:
package main
+
+import (
+ "fmt"
+
+ "github.com/spf13/cobra"
+)
+
+func main() {
+
+ var rootCmd = &cobra.Command{
+ Use: "root [sub]",
+ Short: "My root command",
+ PersistentPreRun: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside rootCmd PersistentPreRun with args: %v\n", args)
+ },
+ PreRun: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside rootCmd PreRun with args: %v\n", args)
+ },
+ Run: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside rootCmd Run with args: %v\n", args)
+ },
+ PostRun: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside rootCmd PostRun with args: %v\n", args)
+ },
+ PersistentPostRun: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside rootCmd PersistentPostRun with args: %v\n", args)
+ },
+ }
+
+ var subCmd = &cobra.Command{
+ Use: "sub [no options!]",
+ Short: "My subcommand",
+ PreRun: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside subCmd PreRun with args: %v\n", args)
+ },
+ Run: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside subCmd Run with args: %v\n", args)
+ },
+ PostRun: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside subCmd PostRun with args: %v\n", args)
+ },
+ PersistentPostRun: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside subCmd PersistentPostRun with args: %v\n", args)
+ },
+ }
+
+ rootCmd.AddCommand(subCmd)
+
+ rootCmd.SetArgs([]string{""})
+ rootCmd.Execute()
+ fmt.Println()
+ rootCmd.SetArgs([]string{"sub", "arg1", "arg2"})
+ rootCmd.Execute()
+}
+
Output:
+Inside rootCmd PersistentPreRun with args: []
+Inside rootCmd PreRun with args: []
+Inside rootCmd Run with args: []
+Inside rootCmd PostRun with args: []
+Inside rootCmd PersistentPostRun with args: []
+
+Inside rootCmd PersistentPreRun with args: [arg1 arg2]
+Inside subCmd PreRun with args: [arg1 arg2]
+Inside subCmd Run with args: [arg1 arg2]
+Inside subCmd PostRun with args: [arg1 arg2]
+Inside subCmd PersistentPostRun with args: [arg1 arg2]
+
+
+
+
+
+
+
+
+Cobra will print automatic suggestions when “unknown command” errors happen. This allows Cobra to behave similarly to the git
command when a typo happens. For example:
$ hugo srever
+Error: unknown command "srever" for "hugo"
+
+Did you mean this?
+ server
+
+Run 'hugo --help' for usage.
+
Suggestions are automatically generated based on existing subcommands and use an implementation of Levenshtein distance. Every registered command that matches a minimum distance of 2 (ignoring case) will be displayed as a suggestion.
+If you need to disable suggestions or tweak the string distance in your command, use:
+command.DisableSuggestions = true
+
or
+command.SuggestionsMinimumDistance = 1
+
You can also explicitly set names for which a given command will be suggested using the SuggestFor
attribute. This allows suggestions for strings that are not close in terms of string distance, but make sense in your set of commands but for which
+you don’t want aliases. Example:
$ kubectl remove
+Error: unknown command "remove" for "kubectl"
+
+Did you mean this?
+ delete
+
+Run 'kubectl help' for usage.
+
+
+
+
+
+
+
+
+Cobra can generate documentation based on subcommands, flags, etc. +Read more about it in the docs generation documentation.
+ + + + + + + + +Cobra can generate a shell-completion file for the following shells: bash, zsh, fish, PowerShell. +If you add more information to your commands, these completions can be amazingly powerful and flexible. +Read more about it in Shell Completions.
+ + + + + + + + +Cobra makes use of the shell-completion system to define a framework allowing you to provide Active Help to your users. +Active Help are messages (hints, warnings, etc) printed as the program is being used. +Read more about it in Active Help.
+ + + +Active Help is a framework provided by Cobra which allows a program to define messages (hints, warnings, etc) that will be printed during program usage. It aims to make it easier for your users to learn how to use your program. If configured by the program, Active Help is printed when the user triggers shell completion.
+For example,
+bash-5.1$ helm repo add [tab]
+You must choose a name for the repo you are adding.
+
+bash-5.1$ bin/helm package [tab]
+Please specify the path to the chart to package
+
+bash-5.1$ bin/helm package [tab][tab]
+bin/ internal/ scripts/ pkg/ testdata/
+
Hint: A good place to use Active Help messages is when the normal completion system does not provide any suggestions. In such cases, Active Help nicely supplements the normal shell completions to guide the user in knowing what is expected by the program.
+ + + + + + + + +Active Help is currently only supported for the following shells:
+As Active Help uses the shell completion system, the implementation of Active Help messages is done by enhancing custom dynamic completions. If you are not familiar with dynamic completions, please refer to Shell Completions.
+Adding Active Help is done through the use of the cobra.AppendActiveHelp(...)
function, where the program repeatedly adds Active Help messages to the list of completions. Keep reading for details.
Adding Active Help when completing a noun is done within the ValidArgsFunction(...)
of a command. Please notice the use of cobra.AppendActiveHelp(...)
in the following example:
cmd := &cobra.Command{
+ Use: "add [NAME] [URL]",
+ Short: "add a chart repository",
+ Args: require.ExactArgs(2),
+ RunE: func(cmd *cobra.Command, args []string) error {
+ return addRepo(args)
+ },
+ ValidArgsFunction: func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {
+ var comps []string
+ if len(args) == 0 {
+ comps = cobra.AppendActiveHelp(comps, "You must choose a name for the repo you are adding")
+ } else if len(args) == 1 {
+ comps = cobra.AppendActiveHelp(comps, "You must specify the URL for the repo you are adding")
+ } else {
+ comps = cobra.AppendActiveHelp(comps, "This command does not take any more arguments")
+ }
+ return comps, cobra.ShellCompDirectiveNoFileComp
+ },
+}
+
The example above defines the completions (none, in this specific example) as well as the Active Help messages for the helm repo add
command. It yields the following behavior:
bash-5.1$ helm repo add [tab]
+You must choose a name for the repo you are adding
+
+bash-5.1$ helm repo add grafana [tab]
+You must specify the URL for the repo you are adding
+
+bash-5.1$ helm repo add grafana https://grafana.github.io/helm-charts [tab]
+This command does not take any more arguments
+
Hint: As can be seen in the above example, a good place to use Active Help messages is when the normal completion system does not provide any suggestions. In such cases, Active Help nicely supplements the normal shell completions.
+ + + + + + + + +Providing Active Help for flags is done in the same fashion as for nouns, but using the completion function registered for the flag. For example:
+_ = cmd.RegisterFlagCompletionFunc("version", func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {
+ if len(args) != 2 {
+ return cobra.AppendActiveHelp(nil, "You must first specify the chart to install before the --version flag can be completed"), cobra.ShellCompDirectiveNoFileComp
+ }
+ return compVersionFlag(args[1], toComplete)
+ })
+
The example above prints an Active Help message when not enough information was given by the user to complete the --version
flag.
bash-5.1$ bin/helm install myrelease --version 2.0.[tab]
+You must first specify the chart to install before the --version flag can be completed
+
+bash-5.1$ bin/helm install myrelease bitnami/solr --version 2.0.[tab][tab]
+2.0.1 2.0.2 2.0.3
+
+
+
+
+
+
+
+
+You may want to allow your users to disable Active Help or choose between different levels of Active Help. It is entirely up to the program to define the type of configurability of Active Help that it wants to offer, if any. +Allowing to configure Active Help is entirely optional; you can use Active Help in your program without doing anything about Active Help configuration.
+The way to configure Active Help is to use the program’s Active Help environment
+variable. That variable is named <PROGRAM>_ACTIVE_HELP
where <PROGRAM>
is the name of your
+program in uppercase with any -
replaced by an _
. The variable should be set by the user to whatever
+Active Help configuration values are supported by the program.
For example, say helm
has chosen to support three levels for Active Help: on
, off
, local
. Then a user
+would set the desired behavior to local
by doing export HELM_ACTIVE_HELP=local
in their shell.
For simplicity, when in cmd.ValidArgsFunction(...)
or a flag’s completion function, the program should read the
+Active Help configuration using the cobra.GetActiveHelpConfig(cmd)
function and select what Active Help messages
+should or should not be added (instead of reading the environment variable directly).
For example:
+ValidArgsFunction: func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {
+ activeHelpLevel := cobra.GetActiveHelpConfig(cmd)
+
+ var comps []string
+ if len(args) == 0 {
+ if activeHelpLevel != "off" {
+ comps = cobra.AppendActiveHelp(comps, "You must choose a name for the repo you are adding")
+ }
+ } else if len(args) == 1 {
+ if activeHelpLevel != "off" {
+ comps = cobra.AppendActiveHelp(comps, "You must specify the URL for the repo you are adding")
+ }
+ } else {
+ if activeHelpLevel == "local" {
+ comps = cobra.AppendActiveHelp(comps, "This command does not take any more arguments")
+ }
+ }
+ return comps, cobra.ShellCompDirectiveNoFileComp
+},
+
Note 1: If the <PROGRAM>_ACTIVE_HELP
environment variable is set to the string “0”, Cobra will automatically disable all Active Help output (even if some output was specified by the program using the cobra.AppendActiveHelp(...)
function). Using “0” can simplify your code in situations where you want to blindly disable Active Help without having to call cobra.GetActiveHelpConfig(cmd)
explicitly.
Note 2: If a user wants to disable Active Help for every single program based on Cobra, she can set the environment variable COBRA_ACTIVE_HELP
to “0”. In this case cobra.GetActiveHelpConfig(cmd)
will return “0” no matter what the variable <PROGRAM>_ACTIVE_HELP
is set to.
Note 3: If the user does not set <PROGRAM>_ACTIVE_HELP
or COBRA_ACTIVE_HELP
(which will be a common case), the default value for the Active Help configuration returned by cobra.GetActiveHelpConfig(cmd)
will be the empty string.
Cobra provides a default completion
command for programs that wish to use it.
+When using the default completion
command, Active Help is configurable in the same
+fashion as described above using environment variables. You may wish to document this in more
+details for your users.
Debugging your Active Help code is done in the same way as debugging your dynamic completion code, which is with Cobra’s hidden __complete
command. Please refer to debugging shell completion for details.
When debugging with the __complete
command, if you want to specify different Active Help configurations, you should use the active help environment variable. That variable is named <PROGRAM>_ACTIVE_HELP
where any -
is replaced by an _
. For example, we can test deactivating some Active Help as shown below:
$ HELM_ACTIVE_HELP=1 bin/helm __complete install wordpress bitnami/h<ENTER>
+bitnami/haproxy
+bitnami/harbor
+_activeHelp_ WARNING: cannot re-use a name that is still in use
+:0
+Completion ended with directive: ShellCompDirectiveDefault
+
+$ HELM_ACTIVE_HELP=0 bin/helm __complete install wordpress bitnami/h<ENTER>
+bitnami/haproxy
+bitnami/harbor
+:0
+Completion ended with directive: ShellCompDirectiveDefault
+
+
+
+
+
+
+
+
+
+
+Please refer to Shell Completions for details.
+ + + + + + + + +For backward compatibility, Cobra still supports its legacy dynamic completion solution (described below). Unlike the ValidArgsFunction
solution, the legacy solution will only work for Bash shell-completion and not for other shells. This legacy solution can be used along-side ValidArgsFunction
and RegisterFlagCompletionFunc()
, as long as both solutions are not used for the same command. This provides a path to gradually migrate from the legacy solution to the new solution.
Note: Cobra’s default completion
command uses bash completion V2. If you are currently using Cobra’s legacy dynamic completion solution, you should not use the default completion
command but continue using your own.
The legacy solution allows you to inject bash functions into the bash completion script. Those bash functions are responsible for providing the completion choices for your own completions.
+Some code that works in kubernetes:
+const (
+ bash_completion_func = `__kubectl_parse_get()
+{
+ local kubectl_output out
+ if kubectl_output=$(kubectl get --no-headers "$1" 2>/dev/null); then
+ out=($(echo "${kubectl_output}" | awk '{print $1}'))
+ COMPREPLY=( $( compgen -W "${out[*]}" -- "$cur" ) )
+ fi
+}
+
+__kubectl_get_resource()
+{
+ if [[ ${#nouns[@]} -eq 0 ]]; then
+ return 1
+ fi
+ __kubectl_parse_get ${nouns[${#nouns[@]} -1]}
+ if [[ $? -eq 0 ]]; then
+ return 0
+ fi
+}
+
+__kubectl_custom_func() {
+ case ${last_command} in
+ kubectl_get | kubectl_describe | kubectl_delete | kubectl_stop)
+ __kubectl_get_resource
+ return
+ ;;
+ *)
+ ;;
+ esac
+}
+`)
+
And then I set that in my command definition:
+cmds := &cobra.Command{
+ Use: "kubectl",
+ Short: "kubectl controls the Kubernetes cluster manager",
+ Long: `kubectl controls the Kubernetes cluster manager.
+
+Find more information at https://github.com/GoogleCloudPlatform/kubernetes.`,
+ Run: runHelp,
+ BashCompletionFunction: bash_completion_func,
+}
+
The BashCompletionFunction
option is really only valid/useful on the root command. Doing the above will cause __kubectl_custom_func()
(__<command-use>_custom_func()
) to be called when the built in processor was unable to find a solution. In the case of kubernetes a valid command might look something like kubectl get pod [mypod]
. If you type kubectl get pod [tab][tab]
the __kubectl_customc_func()
will run because the cobra.Command only understood “kubectl” and “get.” __kubectl_custom_func()
will see that the cobra.Command is “kubectl_get” and will thus call another helper __kubectl_get_resource()
. __kubectl_get_resource
will look at the ’nouns’ collected. In our example the only noun will be pod
. So it will call __kubectl_parse_get pod
. __kubectl_parse_get
will actually call out to kubernetes and get any pods. It will then set COMPREPLY
to valid pods!
Similarly, for flags:
+ annotation := make(map[string][]string)
+ annotation[cobra.BashCompCustom] = []string{"__kubectl_get_namespaces"}
+
+ flag := &pflag.Flag{
+ Name: "namespace",
+ Usage: usage,
+ Annotations: annotation,
+ }
+ cmd.Flags().AddFlag(flag)
+
In addition add the __kubectl_get_namespaces
implementation in the BashCompletionFunction
+value, e.g.:
__kubectl_get_namespaces()
+{
+ local template
+ template="{{ range .items }}{{ .metadata.name }} {{ end }}"
+ local kubectl_out
+ if kubectl_out=$(kubectl get -o template --template="${template}" namespace 2>/dev/null); then
+ COMPREPLY=( $( compgen -W "${kubectl_out}[*]" -- "$cur" ) )
+ fi
+}
+
Please refer to Shell Completions for details.
+ + + + + + + + + + +Please refer to Shell Completions for details.
+ + + + + + + + + + +Please refer to Shell Completions for details.
+ + + + + + + + +Cobra 1.1 standardized its zsh completion support to align it with its other shell completions. Although the API was kept backwards-compatible, some small changes in behavior were introduced.
+ + + + + + + + +See further below for more details on these deprecations.
+cmd.MarkZshCompPositionalArgumentFile(pos, []string{})
is no longer needed. It is therefore deprecated and silently ignored.cmd.MarkZshCompPositionalArgumentFile(pos, glob[])
is deprecated and silently ignored.
+ValidArgsFunction
with ShellCompDirectiveFilterFileExt
.cmd.MarkZshCompPositionalArgumentWords()
is deprecated and silently ignored.
+ValidArgsFunction
.Noun completion
+Old behavior | +New behavior | +
---|---|
No file completion by default (opposite of bash) | +File completion by default; use ValidArgsFunction with ShellCompDirectiveNoFileComp to turn off file completion on a per-argument basis |
+
Completion of flag names without the - prefix having been typed |
+Flag names are only completed if the user has typed the first - |
+
cmd.MarkZshCompPositionalArgumentFile(pos, []string{}) used to turn on file completion on a per-argument position basis |
+File completion for all arguments by default; cmd.MarkZshCompPositionalArgumentFile() is deprecated and silently ignored |
+
cmd.MarkZshCompPositionalArgumentFile(pos, glob[]) used to turn on file completion with glob filtering on a per-argument position basis (zsh-specific) |
+cmd.MarkZshCompPositionalArgumentFile() is deprecated and silently ignored; use ValidArgsFunction with ShellCompDirectiveFilterFileExt for file extension filtering (not full glob filtering) |
+
cmd.MarkZshCompPositionalArgumentWords(pos, words[]) used to provide completion choices on a per-argument position basis (zsh-specific) |
+cmd.MarkZshCompPositionalArgumentWords() is deprecated and silently ignored; use ValidArgsFunction to achieve the same behavior |
+
Flag-value completion
+Old behavior | +New behavior | +
---|---|
No file completion by default (opposite of bash) | +File completion by default; use RegisterFlagCompletionFunc() with ShellCompDirectiveNoFileComp to turn off file completion |
+
cmd.MarkFlagFilename(flag, []string{}) and similar used to turn on file completion |
+File completion by default; cmd.MarkFlagFilename(flag, []string{}) no longer needed in this context and silently ignored |
+
cmd.MarkFlagFilename(flag, glob[]) used to turn on file completion with glob filtering (syntax of []string{"*.yaml", "*.yml"} incompatible with bash) |
+Will continue to work, however, support for bash syntax is added and should be used instead so as to work for all shells ([]string{"yaml", "yml"} ) |
+
cmd.MarkFlagDirname(flag) only completes directories (zsh-specific) |
+Has been added for all shells | +
Completion of a flag name does not repeat, unless flag is of type *Array or *Slice (not supported by bash) |
+Retained for zsh and added to fish |
+
Completion of a flag name does not provide the = form (unlike bash) |
+Retained for zsh and added to fish |
+
Improvements
+ValidArgsFunction
and RegisterFlagCompletionFunc()
)=
form of flagsGenerating man pages from a cobra command is incredibly easy. An example is as follows:
+package main
+
+import (
+ "log"
+
+ "github.com/spf13/cobra"
+ "github.com/spf13/cobra/doc"
+)
+
+func main() {
+ cmd := &cobra.Command{
+ Use: "test",
+ Short: "my test program",
+ }
+ header := &doc.GenManHeader{
+ Title: "MINE",
+ Section: "3",
+ }
+ err := doc.GenManTree(cmd, header, "/tmp")
+ if err != nil {
+ log.Fatal(err)
+ }
+}
+
That will get you a man page /tmp/test.3
Generating Markdown pages from a cobra command is incredibly easy. An example is as follows:
+package main
+
+import (
+ "log"
+
+ "github.com/spf13/cobra"
+ "github.com/spf13/cobra/doc"
+)
+
+func main() {
+ cmd := &cobra.Command{
+ Use: "test",
+ Short: "my test program",
+ }
+ err := doc.GenMarkdownTree(cmd, "/tmp")
+ if err != nil {
+ log.Fatal(err)
+ }
+}
+
That will get you a Markdown document /tmp/test.md
This program can actually generate docs for the kubectl command in the kubernetes project
+package main
+
+import (
+ "log"
+ "io/ioutil"
+ "os"
+
+ "k8s.io/kubernetes/pkg/kubectl/cmd"
+ cmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
+
+ "github.com/spf13/cobra/doc"
+)
+
+func main() {
+ kubectl := cmd.NewKubectlCommand(cmdutil.NewFactory(nil), os.Stdin, ioutil.Discard, ioutil.Discard)
+ err := doc.GenMarkdownTree(kubectl, "./")
+ if err != nil {
+ log.Fatal(err)
+ }
+}
+
This will generate a whole series of files, one for each command in the tree, in the directory specified (in this case “./”)
+ + + + + + + + +You may wish to have more control over the output, or only generate for a single command, instead of the entire command tree. If this is the case you may prefer to GenMarkdown
instead of GenMarkdownTree
out := new(bytes.Buffer)
+ err := doc.GenMarkdown(cmd, out)
+ if err != nil {
+ log.Fatal(err)
+ }
+
This will write the markdown doc for ONLY “cmd” into the out, buffer.
+ + + + + + + + +Both GenMarkdown
and GenMarkdownTree
have alternate versions with callbacks to get some control of the output:
func GenMarkdownTreeCustom(cmd *Command, dir string, filePrepender, linkHandler func(string) string) error {
+ //...
+}
+
func GenMarkdownCustom(cmd *Command, out *bytes.Buffer, linkHandler func(string) string) error {
+ //...
+}
+
The filePrepender
will prepend the return value given the full filepath to the rendered Markdown file. A common use case is to add front matter to use the generated documentation with Hugo:
const fmTemplate = `---
+date: %s
+title: "%s"
+slug: %s
+url: %s
+---
+`
+
+filePrepender := func(filename string) string {
+ now := time.Now().Format(time.RFC3339)
+ name := filepath.Base(filename)
+ base := strings.TrimSuffix(name, path.Ext(name))
+ url := "/commands/" + strings.ToLower(base) + "/"
+ return fmt.Sprintf(fmTemplate, now, strings.Replace(base, "_", " ", -1), base, url)
+}
+
The linkHandler
can be used to customize the rendered internal links to the commands, given a filename:
linkHandler := func(name string) string {
+ base := strings.TrimSuffix(name, path.Ext(name))
+ return "/commands/" + strings.ToLower(base) + "/"
+}
+
Generating ReST pages from a cobra command is incredibly easy. An example is as follows:
+package main
+
+import (
+ "log"
+
+ "github.com/spf13/cobra"
+ "github.com/spf13/cobra/doc"
+)
+
+func main() {
+ cmd := &cobra.Command{
+ Use: "test",
+ Short: "my test program",
+ }
+ err := doc.GenReSTTree(cmd, "/tmp")
+ if err != nil {
+ log.Fatal(err)
+ }
+}
+
That will get you a ReST document /tmp/test.rst
This program can actually generate docs for the kubectl command in the kubernetes project
+package main
+
+import (
+ "log"
+ "io/ioutil"
+ "os"
+
+ "k8s.io/kubernetes/pkg/kubectl/cmd"
+ cmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
+
+ "github.com/spf13/cobra/doc"
+)
+
+func main() {
+ kubectl := cmd.NewKubectlCommand(cmdutil.NewFactory(nil), os.Stdin, ioutil.Discard, ioutil.Discard)
+ err := doc.GenReSTTree(kubectl, "./")
+ if err != nil {
+ log.Fatal(err)
+ }
+}
+
This will generate a whole series of files, one for each command in the tree, in the directory specified (in this case “./”)
+ + + + + + + + +You may wish to have more control over the output, or only generate for a single command, instead of the entire command tree. If this is the case you may prefer to GenReST
instead of GenReSTTree
out := new(bytes.Buffer)
+ err := doc.GenReST(cmd, out)
+ if err != nil {
+ log.Fatal(err)
+ }
+
This will write the ReST doc for ONLY “cmd” into the out, buffer.
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Both GenReST
and GenReSTTree
have alternate versions with callbacks to get some control of the output:
func GenReSTTreeCustom(cmd *Command, dir string, filePrepender func(string) string, linkHandler func(string, string) string) error {
+ //...
+}
+
func GenReSTCustom(cmd *Command, out *bytes.Buffer, linkHandler func(string, string) string) error {
+ //...
+}
+
The filePrepender
will prepend the return value given the full filepath to the rendered ReST file. A common use case is to add front matter to use the generated documentation with Hugo:
const fmTemplate = `---
+date: %s
+title: "%s"
+slug: %s
+url: %s
+---
+`
+filePrepender := func(filename string) string {
+ now := time.Now().Format(time.RFC3339)
+ name := filepath.Base(filename)
+ base := strings.TrimSuffix(name, path.Ext(name))
+ url := "/commands/" + strings.ToLower(base) + "/"
+ return fmt.Sprintf(fmTemplate, now, strings.Replace(base, "_", " ", -1), base, url)
+}
+
The linkHandler
can be used to customize the rendered links to the commands, given a command name and reference. This is useful while converting rst to html or while generating documentation with tools like Sphinx where :ref:
is used:
// Sphinx cross-referencing format
+linkHandler := func(name, ref string) string {
+ return fmt.Sprintf(":ref:`%s <%s>`", name, ref)
+}
+
Generating yaml files from a cobra command is incredibly easy. An example is as follows:
+package main
+
+import (
+ "log"
+
+ "github.com/spf13/cobra"
+ "github.com/spf13/cobra/doc"
+)
+
+func main() {
+ cmd := &cobra.Command{
+ Use: "test",
+ Short: "my test program",
+ }
+ err := doc.GenYamlTree(cmd, "/tmp")
+ if err != nil {
+ log.Fatal(err)
+ }
+}
+
That will get you a Yaml document /tmp/test.yaml
This program can actually generate docs for the kubectl command in the kubernetes project
+package main
+
+import (
+ "io/ioutil"
+ "log"
+ "os"
+
+ "k8s.io/kubernetes/pkg/kubectl/cmd"
+ cmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
+
+ "github.com/spf13/cobra/doc"
+)
+
+func main() {
+ kubectl := cmd.NewKubectlCommand(cmdutil.NewFactory(nil), os.Stdin, ioutil.Discard, ioutil.Discard)
+ err := doc.GenYamlTree(kubectl, "./")
+ if err != nil {
+ log.Fatal(err)
+ }
+}
+
This will generate a whole series of files, one for each command in the tree, in the directory specified (in this case “./”)
+ + + + + + + + +You may wish to have more control over the output, or only generate for a single command, instead of the entire command tree. If this is the case you may prefer to GenYaml
instead of GenYamlTree
out := new(bytes.Buffer)
+ doc.GenYaml(cmd, out)
+
This will write the yaml doc for ONLY “cmd” into the out, buffer.
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Both GenYaml
and GenYamlTree
have alternate versions with callbacks to get some control of the output:
func GenYamlTreeCustom(cmd *Command, dir string, filePrepender, linkHandler func(string) string) error {
+ //...
+}
+
func GenYamlCustom(cmd *Command, out *bytes.Buffer, linkHandler func(string) string) error {
+ //...
+}
+
The filePrepender
will prepend the return value given the full filepath to the rendered Yaml file. A common use case is to add front matter to use the generated documentation with Hugo:
const fmTemplate = `---
+date: %s
+title: "%s"
+slug: %s
+url: %s
+---
+`
+
+filePrepender := func(filename string) string {
+ now := time.Now().Format(time.RFC3339)
+ name := filepath.Base(filename)
+ base := strings.TrimSuffix(name, path.Ext(name))
+ url := "/commands/" + strings.ToLower(base) + "/"
+ return fmt.Sprintf(fmTemplate, now, strings.Replace(base, "_", " ", -1), base, url)
+}
+
The linkHandler
can be used to customize the rendered internal links to the commands, given a filename:
linkHandler := func(name string) string {
+ base := strings.TrimSuffix(name, path.Ext(name))
+ return "/commands/" + strings.ToLower(base) + "/"
+}
+
upctl
)While you are welcome to provide your own organization, typically a Cobra-based +application will follow the following organizational structure:
+ ▾ appName/
+ ▾ cmd/
+ add.go
+ your.go
+ commands.go
+ here.go
+ main.go
+
In a Cobra app, typically the main.go file is very bare. It serves one purpose: initializing Cobra.
+package main
+
+import (
+ "{pathToYourApp}/cmd"
+)
+
+func main() {
+ cmd.Execute()
+}
+
Cobra-CLI is its own program that will create your application and add any commands you want. +It’s the easiest way to incorporate Cobra into your application.
+For complete details on using the Cobra generator, please refer to The Cobra-CLI Generator README
+ + + + + + + + +To manually implement Cobra you need to create a bare main.go file and a rootCmd file. +You will optionally provide additional commands as you see fit.
+ + + + + + + + +Cobra doesn’t require any special constructors. Simply create your commands.
+Ideally you place this in app/cmd/root.go:
+var rootCmd = &cobra.Command{
+ Use: "hugo",
+ Short: "Hugo is a very fast static site generator",
+ Long: `A Fast and Flexible Static Site Generator built with
+ love by spf13 and friends in Go.
+ Complete documentation is available at https://gohugo.io/documentation/`,
+ Run: func(cmd *cobra.Command, args []string) {
+ // Do Stuff Here
+ },
+}
+
+func Execute() {
+ if err := rootCmd.Execute(); err != nil {
+ fmt.Fprintln(os.Stderr, err)
+ os.Exit(1)
+ }
+}
+
You will additionally define flags and handle configuration in your init() function.
+For example cmd/root.go:
+package cmd
+
+import (
+ "fmt"
+ "os"
+
+ "github.com/spf13/cobra"
+ "github.com/spf13/viper"
+)
+
+var (
+ // Used for flags.
+ cfgFile string
+ userLicense string
+
+ rootCmd = &cobra.Command{
+ Use: "cobra-cli",
+ Short: "A generator for Cobra based Applications",
+ Long: `Cobra is a CLI library for Go that empowers applications.
+This application is a tool to generate the needed files
+to quickly create a Cobra application.`,
+ }
+)
+
+// Execute executes the root command.
+func Execute() error {
+ return rootCmd.Execute()
+}
+
+func init() {
+ cobra.OnInitialize(initConfig)
+
+ rootCmd.PersistentFlags().StringVar(&cfgFile, "config", "", "config file (default is $HOME/.cobra.yaml)")
+ rootCmd.PersistentFlags().StringP("author", "a", "YOUR NAME", "author name for copyright attribution")
+ rootCmd.PersistentFlags().StringVarP(&userLicense, "license", "l", "", "name of license for the project")
+ rootCmd.PersistentFlags().Bool("viper", true, "use Viper for configuration")
+ viper.BindPFlag("author", rootCmd.PersistentFlags().Lookup("author"))
+ viper.BindPFlag("useViper", rootCmd.PersistentFlags().Lookup("viper"))
+ viper.SetDefault("author", "NAME HERE <EMAIL ADDRESS>")
+ viper.SetDefault("license", "apache")
+
+ rootCmd.AddCommand(addCmd)
+ rootCmd.AddCommand(initCmd)
+}
+
+func initConfig() {
+ if cfgFile != "" {
+ // Use config file from the flag.
+ viper.SetConfigFile(cfgFile)
+ } else {
+ // Find home directory.
+ home, err := os.UserHomeDir()
+ cobra.CheckErr(err)
+
+ // Search config in home directory with name ".cobra" (without extension).
+ viper.AddConfigPath(home)
+ viper.SetConfigType("yaml")
+ viper.SetConfigName(".cobra")
+ }
+
+ viper.AutomaticEnv()
+
+ if err := viper.ReadInConfig(); err == nil {
+ fmt.Println("Using config file:", viper.ConfigFileUsed())
+ }
+}
+
With the root command you need to have your main function execute it. +Execute should be run on the root for clarity, though it can be called on any command.
+In a Cobra app, typically the main.go file is very bare. It serves one purpose: to initialize Cobra.
+package main
+
+import (
+ "{pathToYourApp}/cmd"
+)
+
+func main() {
+ cmd.Execute()
+}
+
Additional commands can be defined and typically are each given their own file +inside of the cmd/ directory.
+If you wanted to create a version command you would create cmd/version.go and +populate it with the following:
+package cmd
+
+import (
+ "fmt"
+
+ "github.com/spf13/cobra"
+)
+
+func init() {
+ rootCmd.AddCommand(versionCmd)
+}
+
+var versionCmd = &cobra.Command{
+ Use: "version",
+ Short: "Print the version number of Hugo",
+ Long: `All software has versions. This is Hugo's`,
+ Run: func(cmd *cobra.Command, args []string) {
+ fmt.Println("Hugo Static Site Generator v0.9 -- HEAD")
+ },
+}
+
A command may have subcommands which in turn may have other subcommands. This is achieved by using
+AddCommand
. In some cases, especially in larger applications, each subcommand may be defined in
+its own go package.
The suggested approach is for the parent command to use AddCommand
to add its most immediate
+subcommands. For example, consider the following directory structure:
├── cmd
+│ ├── root.go
+│ └── sub1
+│ ├── sub1.go
+│ └── sub2
+│ ├── leafA.go
+│ ├── leafB.go
+│ └── sub2.go
+└── main.go
+
In this case:
+init
function of root.go
adds the command defined in sub1.go
to the root command.init
function of sub1.go
adds the command defined in sub2.go
to the sub1 command.init
function of sub2.go
adds the commands defined in leafA.go
and leafB.go
to the
+sub2 command.This approach ensures the subcommands are always included at compile time while avoiding cyclic +references.
+ + + + + + + + +If you wish to return an error to the caller of a command, RunE
can be used.
package cmd
+
+import (
+ "fmt"
+
+ "github.com/spf13/cobra"
+)
+
+func init() {
+ rootCmd.AddCommand(tryCmd)
+}
+
+var tryCmd = &cobra.Command{
+ Use: "try",
+ Short: "Try and possibly fail at something",
+ RunE: func(cmd *cobra.Command, args []string) error {
+ if err := someFunc(); err != nil {
+ return err
+ }
+ return nil
+ },
+}
+
The error can then be caught at the execute function call.
+ + + + + + + + +Flags provide modifiers to control how the action command operates.
+ + + + + + + + +Since the flags are defined and used in different locations, we need to +define a variable outside with the correct scope to assign the flag to +work with.
+var Verbose bool
+var Source string
+
There are two different approaches to assign a flag.
+ + + + + + + + +A flag can be ‘persistent’, meaning that this flag will be available to the +command it’s assigned to as well as every command under that command. For +global flags, assign a flag as a persistent flag on the root.
+rootCmd.PersistentFlags().BoolVarP(&Verbose, "verbose", "v", false, "verbose output")
+
A flag can also be assigned locally, which will only apply to that specific command.
+localCmd.Flags().StringVarP(&Source, "source", "s", "", "Source directory to read from")
+
By default, Cobra only parses local flags on the target command, and any local flags on
+parent commands are ignored. By enabling Command.TraverseChildren
, Cobra will
+parse local flags on each command before executing the target command.
command := cobra.Command{
+ Use: "print [OPTIONS] [COMMANDS]",
+ TraverseChildren: true,
+}
+
You can also bind your flags with viper:
+var author string
+
+func init() {
+ rootCmd.PersistentFlags().StringVar(&author, "author", "YOUR NAME", "Author name for copyright attribution")
+ viper.BindPFlag("author", rootCmd.PersistentFlags().Lookup("author"))
+}
+
In this example, the persistent flag author
is bound with viper
.
+Note: the variable author
will not be set to the value from config,
+when the --author
flag is provided by user.
More in viper documentation.
+ + + + + + + + +Flags are optional by default. If instead you wish your command to report an error +when a flag has not been set, mark it as required:
+rootCmd.Flags().StringVarP(&Region, "region", "r", "", "AWS region (required)")
+rootCmd.MarkFlagRequired("region")
+
Or, for persistent flags:
+rootCmd.PersistentFlags().StringVarP(&Region, "region", "r", "", "AWS region (required)")
+rootCmd.MarkPersistentFlagRequired("region")
+
If you have different flags that must be provided together (e.g. if they provide the --username
flag they MUST provide the --password
flag as well) then
+Cobra can enforce that requirement:
rootCmd.Flags().StringVarP(&u, "username", "u", "", "Username (required if password is set)")
+rootCmd.Flags().StringVarP(&pw, "password", "p", "", "Password (required if username is set)")
+rootCmd.MarkFlagsRequiredTogether("username", "password")
+
You can also prevent different flags from being provided together if they represent mutually
+exclusive options such as specifying an output format as either --json
or --yaml
but never both:
rootCmd.Flags().BoolVar(&ofJson, "json", false, "Output in JSON")
+rootCmd.Flags().BoolVar(&ofYaml, "yaml", false, "Output in YAML")
+rootCmd.MarkFlagsMutuallyExclusive("json", "yaml")
+
If you want to require at least one flag from a group to be present, you can use MarkFlagsOneRequired
.
+This can be combined with MarkFlagsMutuallyExclusive
to enforce exactly one flag from a given group:
rootCmd.Flags().BoolVar(&ofJson, "json", false, "Output in JSON")
+rootCmd.Flags().BoolVar(&ofYaml, "yaml", false, "Output in YAML")
+rootCmd.MarkFlagsOneRequired("json", "yaml")
+rootCmd.MarkFlagsMutuallyExclusive("json", "yaml")
+
In these cases:
+Validation of positional arguments can be specified using the Args
field of Command
.
+The following validators are built in:
NoArgs
- report an error if there are any positional args.ArbitraryArgs
- accept any number of args.MinimumNArgs(int)
- report an error if less than N positional args are provided.MaximumNArgs(int)
- report an error if more than N positional args are provided.ExactArgs(int)
- report an error if there are not exactly N positional args.RangeArgs(min, max)
- report an error if the number of args is not between min
and max
.OnlyValidArgs
- report an error if there are any positional args not specified in the ValidArgs
field of Command
, which can optionally be set to a list of valid values for positional args.If Args
is undefined or nil
, it defaults to ArbitraryArgs
.
Moreover, MatchAll(pargs ...PositionalArgs)
enables combining existing checks with arbitrary other checks.
+For instance, if you want to report an error if there are not exactly N positional args OR if there are any positional
+args that are not in the ValidArgs
field of Command
, you can call MatchAll
on ExactArgs
and OnlyValidArgs
, as
+shown below:
var cmd = &cobra.Command{
+ Short: "hello",
+ Args: cobra.MatchAll(cobra.ExactArgs(2), cobra.OnlyValidArgs),
+ Run: func(cmd *cobra.Command, args []string) {
+ fmt.Println("Hello, World!")
+ },
+}
+
It is possible to set any custom validator that satisfies func(cmd *cobra.Command, args []string) error
.
+For example:
var cmd = &cobra.Command{
+ Short: "hello",
+ Args: func(cmd *cobra.Command, args []string) error {
+ // Optionally run one of the validators provided by cobra
+ if err := cobra.MinimumNArgs(1)(cmd, args); err != nil {
+ return err
+ }
+ // Run the custom validation logic
+ if myapp.IsValidColor(args[0]) {
+ return nil
+ }
+ return fmt.Errorf("invalid color specified: %s", args[0])
+ },
+ Run: func(cmd *cobra.Command, args []string) {
+ fmt.Println("Hello, World!")
+ },
+}
+
In the example below, we have defined three commands. Two are at the top level +and one (cmdTimes) is a child of one of the top commands. In this case the root +is not executable, meaning that a subcommand is required. This is accomplished +by not providing a ‘Run’ for the ‘rootCmd’.
+We have only defined one flag for a single command.
+More documentation about flags is available at https://github.com/spf13/pflag
+package main
+
+import (
+ "fmt"
+ "strings"
+
+ "github.com/spf13/cobra"
+)
+
+func main() {
+ var echoTimes int
+
+ var cmdPrint = &cobra.Command{
+ Use: "print [string to print]",
+ Short: "Print anything to the screen",
+ Long: `print is for printing anything back to the screen.
+For many years people have printed back to the screen.`,
+ Args: cobra.MinimumNArgs(1),
+ Run: func(cmd *cobra.Command, args []string) {
+ fmt.Println("Print: " + strings.Join(args, " "))
+ },
+ }
+
+ var cmdEcho = &cobra.Command{
+ Use: "echo [string to echo]",
+ Short: "Echo anything to the screen",
+ Long: `echo is for echoing anything back.
+Echo works a lot like print, except it has a child command.`,
+ Args: cobra.MinimumNArgs(1),
+ Run: func(cmd *cobra.Command, args []string) {
+ fmt.Println("Echo: " + strings.Join(args, " "))
+ },
+ }
+
+ var cmdTimes = &cobra.Command{
+ Use: "times [string to echo]",
+ Short: "Echo anything to the screen more times",
+ Long: `echo things multiple times back to the user by providing
+a count and a string.`,
+ Args: cobra.MinimumNArgs(1),
+ Run: func(cmd *cobra.Command, args []string) {
+ for i := 0; i < echoTimes; i++ {
+ fmt.Println("Echo: " + strings.Join(args, " "))
+ }
+ },
+ }
+
+ cmdTimes.Flags().IntVarP(&echoTimes, "times", "t", 1, "times to echo the input")
+
+ var rootCmd = &cobra.Command{Use: "app"}
+ rootCmd.AddCommand(cmdPrint, cmdEcho)
+ cmdEcho.AddCommand(cmdTimes)
+ rootCmd.Execute()
+}
+
For a more complete example of a larger application, please checkout Hugo.
+ + + + + + + + +Cobra automatically adds a help command to your application when you have subcommands. +This will be called when a user runs ‘app help’. Additionally, help will also +support all other commands as input. Say, for instance, you have a command called +‘create’ without any additional configuration; Cobra will work when ‘app help +create’ is called. Every command will automatically have the ‘–help’ flag added.
+ + + + + + + + +The following output is automatically generated by Cobra. Nothing beyond the +command and flag definitions are needed.
+$ cobra-cli help
+
+Cobra is a CLI library for Go that empowers applications.
+This application is a tool to generate the needed files
+to quickly create a Cobra application.
+
+Usage:
+ cobra-cli [command]
+
+Available Commands:
+ add Add a command to a Cobra Application
+ completion Generate the autocompletion script for the specified shell
+ help Help about any command
+ init Initialize a Cobra Application
+
+Flags:
+ -a, --author string author name for copyright attribution (default "YOUR NAME")
+ --config string config file (default is $HOME/.cobra.yaml)
+ -h, --help help for cobra-cli
+ -l, --license string name of license for the project
+ --viper use Viper for configuration
+
+Use "cobra-cli [command] --help" for more information about a command.
+
+Help is just a command like any other. There is no special logic or behavior +around it. In fact, you can provide your own if you want.
+ + + + + + + + +Cobra supports grouping of available commands in the help output. To group commands, each group must be explicitly
+defined using AddGroup()
on the parent command. Then a subcommand can be added to a group using the GroupID
element
+of that subcommand. The groups will appear in the help output in the same order as they are defined using different
+calls to AddGroup()
. If you use the generated help
or completion
commands, you can set their group ids using
+SetHelpCommandGroupId()
and SetCompletionCommandGroupId()
on the root command, respectively.
You can provide your own Help command or your own template for the default command to use +with the following functions:
+cmd.SetHelpCommand(cmd *Command)
+cmd.SetHelpFunc(f func(*Command, []string))
+cmd.SetHelpTemplate(s string)
+
The latter two will also apply to any children commands.
+ + + + + + + + +When the user provides an invalid flag or invalid command, Cobra responds by +showing the user the ‘usage’.
+ + + + + + + + +You may recognize this from the help above. That’s because the default help +embeds the usage as part of its output.
+$ cobra-cli --invalid
+Error: unknown flag: --invalid
+Usage:
+ cobra-cli [command]
+
+Available Commands:
+ add Add a command to a Cobra Application
+ completion Generate the autocompletion script for the specified shell
+ help Help about any command
+ init Initialize a Cobra Application
+
+Flags:
+ -a, --author string author name for copyright attribution (default "YOUR NAME")
+ --config string config file (default is $HOME/.cobra.yaml)
+ -h, --help help for cobra-cli
+ -l, --license string name of license for the project
+ --viper use Viper for configuration
+
+Use "cobra [command] --help" for more information about a command.
+
+
+
+
+
+
+
+
+
+You can provide your own usage function or template for Cobra to use. +Like help, the function and template are overridable through public methods:
+cmd.SetUsageFunc(f func(*Command) error)
+cmd.SetUsageTemplate(s string)
+
Cobra adds a top-level ‘–version’ flag if the Version field is set on the root command.
+Running an application with the ‘–version’ flag will print the version to stdout using
+the version template. The template can be customized using the
+cmd.SetVersionTemplate(s string)
function.
It is possible to run functions before or after the main Run
function of your command. The PersistentPreRun
and PreRun
functions will be executed before Run
. PersistentPostRun
and PostRun
will be executed after Run
. The Persistent*Run
functions will be inherited by children if they do not declare their own. These functions are run in the following order:
PersistentPreRun
PreRun
Run
PostRun
PersistentPostRun
An example of two commands which use all of these features is below. When the subcommand is executed, it will run the root command’s PersistentPreRun
but not the root command’s PersistentPostRun
:
package main
+
+import (
+ "fmt"
+
+ "github.com/spf13/cobra"
+)
+
+func main() {
+
+ var rootCmd = &cobra.Command{
+ Use: "root [sub]",
+ Short: "My root command",
+ PersistentPreRun: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside rootCmd PersistentPreRun with args: %v\n", args)
+ },
+ PreRun: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside rootCmd PreRun with args: %v\n", args)
+ },
+ Run: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside rootCmd Run with args: %v\n", args)
+ },
+ PostRun: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside rootCmd PostRun with args: %v\n", args)
+ },
+ PersistentPostRun: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside rootCmd PersistentPostRun with args: %v\n", args)
+ },
+ }
+
+ var subCmd = &cobra.Command{
+ Use: "sub [no options!]",
+ Short: "My subcommand",
+ PreRun: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside subCmd PreRun with args: %v\n", args)
+ },
+ Run: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside subCmd Run with args: %v\n", args)
+ },
+ PostRun: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside subCmd PostRun with args: %v\n", args)
+ },
+ PersistentPostRun: func(cmd *cobra.Command, args []string) {
+ fmt.Printf("Inside subCmd PersistentPostRun with args: %v\n", args)
+ },
+ }
+
+ rootCmd.AddCommand(subCmd)
+
+ rootCmd.SetArgs([]string{""})
+ rootCmd.Execute()
+ fmt.Println()
+ rootCmd.SetArgs([]string{"sub", "arg1", "arg2"})
+ rootCmd.Execute()
+}
+
Output:
+Inside rootCmd PersistentPreRun with args: []
+Inside rootCmd PreRun with args: []
+Inside rootCmd Run with args: []
+Inside rootCmd PostRun with args: []
+Inside rootCmd PersistentPostRun with args: []
+
+Inside rootCmd PersistentPreRun with args: [arg1 arg2]
+Inside subCmd PreRun with args: [arg1 arg2]
+Inside subCmd Run with args: [arg1 arg2]
+Inside subCmd PostRun with args: [arg1 arg2]
+Inside subCmd PersistentPostRun with args: [arg1 arg2]
+
+
+
+
+
+
+
+
+Cobra will print automatic suggestions when “unknown command” errors happen. This allows Cobra to behave similarly to the git
command when a typo happens. For example:
$ hugo srever
+Error: unknown command "srever" for "hugo"
+
+Did you mean this?
+ server
+
+Run 'hugo --help' for usage.
+
Suggestions are automatically generated based on existing subcommands and use an implementation of Levenshtein distance. Every registered command that matches a minimum distance of 2 (ignoring case) will be displayed as a suggestion.
+If you need to disable suggestions or tweak the string distance in your command, use:
+command.DisableSuggestions = true
+
or
+command.SuggestionsMinimumDistance = 1
+
You can also explicitly set names for which a given command will be suggested using the SuggestFor
attribute. This allows suggestions for strings that are not close in terms of string distance, but make sense in your set of commands but for which
+you don’t want aliases. Example:
$ kubectl remove
+Error: unknown command "remove" for "kubectl"
+
+Did you mean this?
+ delete
+
+Run 'kubectl help' for usage.
+
+
+
+
+
+
+
+
+Cobra can generate documentation based on subcommands, flags, etc. +Read more about it in the docs generation documentation.
+ + + + + + + + +Cobra can generate a shell-completion file for the following shells: bash, zsh, fish, PowerShell. +If you add more information to your commands, these completions can be amazingly powerful and flexible. +Read more about it in Shell Completions.
+ + + + + + + + +Cobra makes use of the shell-completion system to define a framework allowing you to provide Active Help to your users. +Active Help are messages (hints, warnings, etc) printed as the program is being used. +Read more about it in Active Help.
+ + + +