Documentation ¶
Overview ¶
Package cobra is a commander providing a simple interface to create powerful modern CLI interfaces. In addition to providing an interface, Cobra simultaneously provides a controller to organize your application code.
Index ¶
- Constants
- Variables
- func AddTemplateFunc(name string, tmplFunc interface{})
- func AddTemplateFuncs(tmplFuncs template.FuncMap)
- func AppendActiveHelp(compArray []string, activeHelpStr string) []string
- func ArbitraryArgs(cmd *Command, args []string) error
- func CheckErr(msg interface{})
- func CompDebug(msg string, printToStdErr bool)
- func CompDebugln(msg string, printToStdErr bool)
- func CompError(msg string)
- func CompErrorln(msg string)
- func Eq(a interface{}, b interface{}) bool
- func FixedCompletions(choices []string, directive ShellCompDirective) ...
- func GetActiveHelpConfig(cmd *Command) string
- func Gt(a interface{}, b interface{}) bool
- func MarkFlagCustom(flags *pflag.FlagSet, name string, f string) error
- func MarkFlagDirname(flags *pflag.FlagSet, name string) error
- func MarkFlagFilename(flags *pflag.FlagSet, name string, extensions ...string) error
- func MarkFlagRequired(flags *pflag.FlagSet, name string) error
- func NoArgs(cmd *Command, args []string) error
- func OnFinalize(y ...func())
- func OnInitialize(y ...func())
- func OnlyValidArgs(cmd *Command, args []string) error
- func WriteStringAndCheck(b io.StringWriter, s string)
- type Command
- func (c *Command) AddCommand(cmds ...*Command)
- func (c *Command) AddGroup(groups ...*Group)
- func (c *Command) AllChildCommandsHaveGroup() bool
- func (c *Command) ArgsLenAtDash() int
- func (c *Command) CalledAs() string
- func (c *Command) CommandPath() string
- func (c *Command) CommandPathPadding() int
- func (c *Command) Commands() []*Command
- func (c *Command) ContainsGroup(groupID string) bool
- func (c *Command) Context() context.Context
- func (c *Command) DebugFlags()
- func (c *Command) ErrOrStderr() io.Writer
- func (c *Command) Execute() error
- func (c *Command) ExecuteC() (cmd *Command, err error)
- func (c *Command) ExecuteContext(ctx context.Context) error
- func (c *Command) ExecuteContextC(ctx context.Context) (*Command, error)
- func (c *Command) Find(args []string) (*Command, []string, error)
- func (c *Command) Flag(name string) (flag *flag.Flag)
- func (c *Command) FlagErrorFunc() (f func(*Command, error) error)
- func (c *Command) Flags() *flag.FlagSet
- func (c *Command) GenBashCompletion(w io.Writer) error
- func (c *Command) GenBashCompletionFile(filename string) error
- func (c *Command) GenBashCompletionFileV2(filename string, includeDesc bool) error
- func (c *Command) GenBashCompletionV2(w io.Writer, includeDesc bool) error
- func (c *Command) GenFishCompletion(w io.Writer, includeDesc bool) error
- func (c *Command) GenFishCompletionFile(filename string, includeDesc bool) error
- func (c *Command) GenPowerShellCompletion(w io.Writer) error
- func (c *Command) GenPowerShellCompletionFile(filename string) error
- func (c *Command) GenPowerShellCompletionFileWithDesc(filename string) error
- func (c *Command) GenPowerShellCompletionWithDesc(w io.Writer) error
- func (c *Command) GenZshCompletion(w io.Writer) error
- func (c *Command) GenZshCompletionFile(filename string) error
- func (c *Command) GenZshCompletionFileNoDesc(filename string) error
- func (c *Command) GenZshCompletionNoDesc(w io.Writer) error
- func (c *Command) GlobalNormalizationFunc() func(f *flag.FlagSet, name string) flag.NormalizedName
- func (c *Command) Groups() []*Group
- func (c *Command) HasAlias(s string) bool
- func (c *Command) HasAvailableFlags() bool
- func (c *Command) HasAvailableInheritedFlags() bool
- func (c *Command) HasAvailableLocalFlags() bool
- func (c *Command) HasAvailablePersistentFlags() bool
- func (c *Command) HasAvailableSubCommands() bool
- func (c *Command) HasExample() bool
- func (c *Command) HasFlags() bool
- func (c *Command) HasHelpSubCommands() bool
- func (c *Command) HasInheritedFlags() bool
- func (c *Command) HasLocalFlags() bool
- func (c *Command) HasParent() bool
- func (c *Command) HasPersistentFlags() bool
- func (c *Command) HasSubCommands() bool
- func (c *Command) Help() error
- func (c *Command) HelpFunc() func(*Command, []string)
- func (c *Command) HelpTemplate() string
- func (c *Command) InOrStdin() io.Reader
- func (c *Command) InheritedFlags() *flag.FlagSet
- func (c *Command) InitDefaultCompletionCmd()
- func (c *Command) InitDefaultHelpCmd()
- func (c *Command) InitDefaultHelpFlag()
- func (c *Command) InitDefaultVersionFlag()
- func (c *Command) IsAdditionalHelpTopicCommand() bool
- func (c *Command) IsAvailableCommand() bool
- func (c *Command) LocalFlags() *flag.FlagSet
- func (c *Command) LocalNonPersistentFlags() *flag.FlagSet
- func (c *Command) MarkFlagCustom(name string, f string) error
- func (c *Command) MarkFlagDirname(name string) error
- func (c *Command) MarkFlagFilename(name string, extensions ...string) error
- func (c *Command) MarkFlagRequired(name string) error
- func (c *Command) MarkFlagsMutuallyExclusive(flagNames ...string)
- func (c *Command) MarkFlagsRequiredTogether(flagNames ...string)
- func (c *Command) MarkPersistentFlagDirname(name string) error
- func (c *Command) MarkPersistentFlagFilename(name string, extensions ...string) error
- func (c *Command) MarkPersistentFlagRequired(name string) error
- func (c *Command) MarkZshCompPositionalArgumentFile(argPosition int, patterns ...string) error
- func (c *Command) MarkZshCompPositionalArgumentWords(argPosition int, words ...string) error
- func (c *Command) Name() string
- func (c *Command) NameAndAliases() string
- func (c *Command) NamePadding() int
- func (c *Command) NonInheritedFlags() *flag.FlagSet
- func (c *Command) OutOrStderr() io.Writer
- func (c *Command) OutOrStdout() io.Writer
- func (c *Command) Parent() *Command
- func (c *Command) ParseFlags(args []string) error
- func (c *Command) PersistentFlags() *flag.FlagSet
- func (c *Command) Print(i ...interface{})
- func (c *Command) PrintErr(i ...interface{})
- func (c *Command) PrintErrf(format string, i ...interface{})
- func (c *Command) PrintErrln(i ...interface{})
- func (c *Command) Printf(format string, i ...interface{})
- func (c *Command) Println(i ...interface{})
- func (c *Command) RegisterFlagCompletionFunc(flagName string, ...) error
- func (c *Command) RemoveCommand(cmds ...*Command)
- func (c *Command) ResetCommands()
- func (c *Command) ResetFlags()
- func (c *Command) Root() *Command
- func (c *Command) Runnable() bool
- func (c *Command) SetArgs(a []string)
- func (c *Command) SetCompletionCommandGroupID(groupID string)
- func (c *Command) SetContext(ctx context.Context)
- func (c *Command) SetErr(newErr io.Writer)
- func (c *Command) SetFlagErrorFunc(f func(*Command, error) error)
- func (c *Command) SetGlobalNormalizationFunc(n func(f *flag.FlagSet, name string) flag.NormalizedName)
- func (c *Command) SetHelpCommand(cmd *Command)
- func (c *Command) SetHelpCommandGroupID(groupID string)
- func (c *Command) SetHelpFunc(f func(*Command, []string))
- func (c *Command) SetHelpTemplate(s string)
- func (c *Command) SetIn(newIn io.Reader)
- func (c *Command) SetOut(newOut io.Writer)
- func (c *Command) SetUsageFunc(f func(*Command) error)
- func (c *Command) SetUsageTemplate(s string)
- func (c *Command) SetVersionTemplate(s string)
- func (c *Command) SuggestionsFor(typedName string) []string
- func (c *Command) Traverse(args []string) (*Command, []string, error)
- func (c *Command) Usage() error
- func (c *Command) UsageFunc() (f func(*Command) error)
- func (c *Command) UsagePadding() int
- func (c *Command) UsageString() string
- func (c *Command) UsageTemplate() string
- func (c *Command) UseLine() string
- func (c *Command) ValidateArgs(args []string) error
- func (c *Command) ValidateFlagGroups() error
- func (c *Command) ValidateRequiredFlags() error
- func (c *Command) VersionTemplate() string
- func (c *Command) VisitParents(fn func(*Command))
- type CompletionOptions
- type FParseErrWhitelist
- type Group
- type PositionalArgs
- type ShellCompDirective
Constants ¶
const ( BashCompFilenameExt = "cobra_annotation_bash_completion_filename_extensions" BashCompCustom = "cobra_annotation_bash_completion_custom" BashCompOneRequiredFlag = "cobra_annotation_bash_completion_one_required_flag" BashCompSubdirsInDir = "cobra_annotation_bash_completion_subdirs_in_dir" )
Annotations for Bash completion.
const ( // ShellCompRequestCmd is the name of the hidden command that is used to request // completion results from the program. It is used by the shell completion scripts. ShellCompRequestCmd = "__complete" // ShellCompNoDescRequestCmd is the name of the hidden command that is used to request // completion results without their description. It is used by the shell completion scripts. ShellCompNoDescRequestCmd = "__completeNoDesc" )
const FlagSetByCobraAnnotation = "cobra_annotation_flag_set_by_cobra"
Variables ¶
var EnableCaseInsensitive = defaultCaseInsensitive
EnableCaseInsensitive allows case-insensitive commands names. (case sensitive by default)
var EnableCommandSorting = defaultCommandSorting
EnableCommandSorting controls sorting of the slice of commands, which is turned on by default. To disable sorting, set it to false.
var EnablePrefixMatching = defaultPrefixMatching
EnablePrefixMatching allows to set automatic prefix matching. Automatic prefix matching can be a dangerous thing to automatically enable in CLI tools. Set this to true to enable it.
var MousetrapDisplayDuration = 5 * time.Second
MousetrapDisplayDuration controls how long the MousetrapHelpText message is displayed on Windows if the CLI is started from explorer.exe. Set to 0 to wait for the return key to be pressed. To disable the mousetrap, just set MousetrapHelpText to blank string (""). Works only on Microsoft Windows.
var MousetrapHelpText = `This is a command line tool.
You need to open cmd.exe and run it from there.
`
MousetrapHelpText enables an information splash screen on Windows if the CLI is started from explorer.exe. To disable the mousetrap, just set this variable to blank string (""). Works only on Microsoft Windows.
Functions ¶
func AddTemplateFunc ¶
func AddTemplateFunc(name string, tmplFunc interface{})
AddTemplateFunc adds a template function that's available to Usage and Help template generation.
func AddTemplateFuncs ¶
AddTemplateFuncs adds multiple template functions that are available to Usage and Help template generation.
func AppendActiveHelp ¶
AppendActiveHelp adds the specified string to the specified array to be used as ActiveHelp. Such strings will be processed by the completion script and will be shown as ActiveHelp to the user. The array parameter should be the array that will contain the completions. This function can be called multiple times before and/or after completions are added to the array. Each time this function is called with the same array, the new ActiveHelp line will be shown below the previous ones when completion is triggered.
func ArbitraryArgs ¶
ArbitraryArgs never returns an error.
func CheckErr ¶
func CheckErr(msg interface{})
CheckErr prints the msg with the prefix 'Error:' and exits with error code 1. If the msg is nil, it does nothing.
func CompDebug ¶
CompDebug prints the specified string to the same file as where the completion script prints its logs. Note that completion printouts should never be on stdout as they would be wrongly interpreted as actual completion choices by the completion script.
func CompDebugln ¶
CompDebugln prints the specified string with a newline at the end to the same file as where the completion script prints its logs. Such logs are only printed when the user has set the environment variable BASH_COMP_DEBUG_FILE to the path of some file to be used.
func CompError ¶
func CompError(msg string)
CompError prints the specified completion message to stderr.
func CompErrorln ¶
func CompErrorln(msg string)
CompErrorln prints the specified completion message to stderr with a newline at the end.
func Eq ¶
func Eq(a interface{}, b interface{}) bool
Eq takes two types and checks whether they are equal. Supported types are int and string. Unsupported types will panic.
func FixedCompletions ¶
func FixedCompletions(choices []string, directive ShellCompDirective) func(cmd *Command, args []string, toComplete string) ([]string, ShellCompDirective)
FixedCompletions can be used to create a completion function which always returns the same results.
func GetActiveHelpConfig ¶
GetActiveHelpConfig returns the value of the ActiveHelp environment variable <PROGRAM>_ACTIVE_HELP where <PROGRAM> is the name of the root command in upper case, with all - replaced by _. It will always return "0" if the global environment variable COBRA_ACTIVE_HELP is set to "0".
func Gt ¶
func Gt(a interface{}, b interface{}) bool
Gt takes two types and checks whether the first type is greater than the second. In case of types Arrays, Chans, Maps and Slices, Gt will compare their lengths. Ints are compared directly while strings are first parsed as ints and then compared.
func MarkFlagCustom ¶
MarkFlagCustom adds the BashCompCustom annotation to the named flag, if it exists. The bash completion script will call the bash function f for the flag.
This will only work for bash completion. It is recommended to instead use c.RegisterFlagCompletionFunc(...) which allows to register a Go function which will work across all shells.
func MarkFlagDirname ¶
MarkFlagDirname instructs the various shell completion implementations to limit completions for the named flag to directory names.
func MarkFlagFilename ¶
MarkFlagFilename instructs the various shell completion implementations to limit completions for the named flag to the specified file extensions.
func MarkFlagRequired ¶
MarkFlagRequired instructs the various shell completion implementations to prioritize the named flag when performing completion, and causes your command to report an error if invoked without the flag.
func OnFinalize ¶
func OnFinalize(y ...func())
OnFinalize sets the passed functions to be run when each command's Execute method is terminated.
func OnInitialize ¶
func OnInitialize(y ...func())
OnInitialize sets the passed functions to be run when each command's Execute method is called.
func OnlyValidArgs ¶
OnlyValidArgs returns an error if there are any positional args that are not in the `ValidArgs` field of `Command`
func WriteStringAndCheck ¶
func WriteStringAndCheck(b io.StringWriter, s string)
WriteStringAndCheck writes a string into a buffer, and checks if the error is not nil.
Types ¶
type Command ¶
type Command struct { // Use is the one-line usage message. // Recommended syntax is as follows: // [ ] identifies an optional argument. Arguments that are not enclosed in brackets are required. // ... indicates that you can specify multiple values for the previous argument. // | indicates mutually exclusive information. You can use the argument to the left of the separator or the // argument to the right of the separator. You cannot use both arguments in a single use of the command. // { } delimits a set of mutually exclusive arguments when one of the arguments is required. If the arguments are // optional, they are enclosed in brackets ([ ]). // Example: add [-F file | -D dir]... [-f format] profile Use string // Aliases is an array of aliases that can be used instead of the first word in Use. Aliases []string // SuggestFor is an array of command names for which this command will be suggested - // similar to aliases but only suggests. SuggestFor []string // Short is the short description shown in the 'help' output. Short string // The group id under which this subcommand is grouped in the 'help' output of its parent. GroupID string // Long is the long message shown in the 'help <this-command>' output. Long string // Example is examples of how to use the command. Example string // ValidArgs is list of all valid non-flag arguments that are accepted in shell completions ValidArgs []string // ValidArgsFunction is an optional function that provides valid non-flag arguments for shell completion. // It is a dynamic version of using ValidArgs. // Only one of ValidArgs and ValidArgsFunction can be used for a command. ValidArgsFunction func(cmd *Command, args []string, toComplete string) ([]string, ShellCompDirective) // Expected arguments Args PositionalArgs // ArgAliases is List of aliases for ValidArgs. // These are not suggested to the user in the shell completion, // but accepted if entered manually. ArgAliases []string // BashCompletionFunction is custom bash functions used by the legacy bash autocompletion generator. // For portability with other shells, it is recommended to instead use ValidArgsFunction BashCompletionFunction string // Deprecated defines, if this command is deprecated and should print this string when used. Deprecated string // Annotations are key/value pairs that can be used by applications to identify or // group commands. Annotations map[string]string // Version defines the version for this command. If this value is non-empty and the command does not // define a "version" flag, a "version" boolean flag will be added to the command and, if specified, // will print content of the "Version" variable. A shorthand "v" flag will also be added if the // command does not define one. Version string // The *Run functions are executed in the following order: // * PersistentPreRun() // * PreRun() // * Run() // * PostRun() // * PersistentPostRun() // All functions get the same args, the arguments after the command name. // // PersistentPreRun: children of this command will inherit and execute. PersistentPreRun func(cmd *Command, args []string) // PersistentPreRunE: PersistentPreRun but returns an error. PersistentPreRunE func(cmd *Command, args []string) error // PreRun: children of this command will not inherit. PreRun func(cmd *Command, args []string) // PreRunE: PreRun but returns an error. PreRunE func(cmd *Command, args []string) error // Run: Typically the actual work function. Most commands will only implement this. Run func(cmd *Command, args []string) // RunE: Run but returns an error. RunE func(cmd *Command, args []string) error // PostRun: run after the Run command. PostRun func(cmd *Command, args []string) // PostRunE: PostRun but returns an error. PostRunE func(cmd *Command, args []string) error // PersistentPostRun: children of this command will inherit and execute after PostRun. PersistentPostRun func(cmd *Command, args []string) // PersistentPostRunE: PersistentPostRun but returns an error. PersistentPostRunE func(cmd *Command, args []string) error // FParseErrWhitelist flag parse errors to be ignored FParseErrWhitelist FParseErrWhitelist // CompletionOptions is a set of options to control the handling of shell completion CompletionOptions CompletionOptions // TraverseChildren parses flags on all parents before executing child command. TraverseChildren bool // Hidden defines, if this command is hidden and should NOT show up in the list of available commands. Hidden bool // SilenceErrors is an option to quiet errors down stream. SilenceErrors bool // SilenceUsage is an option to silence usage when an error occurs. SilenceUsage bool // DisableFlagParsing disables the flag parsing. // If this is true all flags will be passed to the command as arguments. DisableFlagParsing bool // DisableAutoGenTag defines, if gen tag ("Auto generated by spf13/cobra...") // will be printed by generating docs for this command. DisableAutoGenTag bool // DisableFlagsInUseLine will disable the addition of [flags] to the usage // line of a command when printing help or generating docs DisableFlagsInUseLine bool // DisableSuggestions disables the suggestions based on Levenshtein distance // that go along with 'unknown command' messages. DisableSuggestions bool // SuggestionsMinimumDistance defines minimum levenshtein distance to display suggestions. // Must be > 0. SuggestionsMinimumDistance int // contains filtered or unexported fields }
Command is just that, a command for your application. E.g. 'go run ...' - 'run' is the command. Cobra requires you to define the usage and description as part of your command definition to ensure usability.
func (*Command) AddCommand ¶
AddCommand adds one or more commands to this parent command.
func (*Command) AllChildCommandsHaveGroup ¶
AllChildCommandsHaveGroup returns if all subcommands are assigned to a group
func (*Command) ArgsLenAtDash ¶
ArgsLenAtDash will return the length of c.Flags().Args at the moment when a -- was found during args parsing.
func (*Command) CalledAs ¶
CalledAs returns the command name or alias that was used to invoke this command or an empty string if the command has not been called.
func (*Command) CommandPath ¶
CommandPath returns the full path to this command.
func (*Command) CommandPathPadding ¶
CommandPathPadding return padding for the command path.
func (*Command) ContainsGroup ¶
ContainsGroup return if groupID exists in the list of command groups.
func (*Command) Context ¶
Context returns underlying command context. If command was executed with ExecuteContext or the context was set with SetContext, the previously set context will be returned. Otherwise, nil is returned.
Notice that a call to Execute and ExecuteC will replace a nil context of a command with a context.Background, so a background context will be returned by Context after one of these functions has been called.
func (*Command) DebugFlags ¶
func (c *Command) DebugFlags()
DebugFlags used to determine which flags have been assigned to which commands and which persist.
func (*Command) ErrOrStderr ¶
ErrOrStderr returns output to stderr
func (*Command) Execute ¶
Execute uses the args (os.Args[1:] by default) and run through the command tree finding appropriate matches for commands and then corresponding flags.
func (*Command) ExecuteContext ¶
ExecuteContext is the same as Execute(), but sets the ctx on the command. Retrieve ctx by calling cmd.Context() inside your *Run lifecycle or ValidArgs functions.
func (*Command) ExecuteContextC ¶
ExecuteContextC is the same as ExecuteC(), but sets the ctx on the command. Retrieve ctx by calling cmd.Context() inside your *Run lifecycle or ValidArgs functions.
func (*Command) Find ¶
Find the target command given the args and command tree Meant to be run on the highest node. Only searches down.
func (*Command) FlagErrorFunc ¶
FlagErrorFunc returns either the function set by SetFlagErrorFunc for this command or a parent, or it returns a function which returns the original error.
func (*Command) Flags ¶
Flags returns the complete FlagSet that applies to this command (local and persistent declared here and by all parents).
func (*Command) GenBashCompletion ¶
GenBashCompletion generates bash completion file and writes to the passed writer.
func (*Command) GenBashCompletionFile ¶
GenBashCompletionFile generates bash completion file.
func (*Command) GenBashCompletionFileV2 ¶
GenBashCompletionFileV2 generates Bash completion version 2.
func (*Command) GenBashCompletionV2 ¶
GenBashCompletionV2 generates Bash completion file version 2 and writes it to the passed writer.
func (*Command) GenFishCompletion ¶
GenFishCompletion generates fish completion file and writes to the passed writer.
func (*Command) GenFishCompletionFile ¶
GenFishCompletionFile generates fish completion file.
func (*Command) GenPowerShellCompletion ¶
GenPowerShellCompletion generates powershell completion file without descriptions and writes it to the passed writer.
func (*Command) GenPowerShellCompletionFile ¶
GenPowerShellCompletionFile generates powershell completion file without descriptions.
func (*Command) GenPowerShellCompletionFileWithDesc ¶
GenPowerShellCompletionFileWithDesc generates powershell completion file with descriptions.
func (*Command) GenPowerShellCompletionWithDesc ¶
GenPowerShellCompletionWithDesc generates powershell completion file with descriptions and writes it to the passed writer.
func (*Command) GenZshCompletion ¶
GenZshCompletion generates zsh completion file including descriptions and writes it to the passed writer.
func (*Command) GenZshCompletionFile ¶
GenZshCompletionFile generates zsh completion file including descriptions.
func (*Command) GenZshCompletionFileNoDesc ¶
GenZshCompletionFileNoDesc generates zsh completion file without descriptions.
func (*Command) GenZshCompletionNoDesc ¶
GenZshCompletionNoDesc generates zsh completion file without descriptions and writes it to the passed writer.
func (*Command) GlobalNormalizationFunc ¶
GlobalNormalizationFunc returns the global normalization function or nil if it doesn't exist.
func (*Command) HasAvailableFlags ¶
HasAvailableFlags checks if the command contains any flags (local plus persistent from the entire structure) which are not hidden or deprecated.
func (*Command) HasAvailableInheritedFlags ¶
HasAvailableInheritedFlags checks if the command has flags inherited from its parent command which are not hidden or deprecated.
func (*Command) HasAvailableLocalFlags ¶
HasAvailableLocalFlags checks if the command has flags specifically declared locally which are not hidden or deprecated.
func (*Command) HasAvailablePersistentFlags ¶
HasAvailablePersistentFlags checks if the command contains persistent flags which are not hidden or deprecated.
func (*Command) HasAvailableSubCommands ¶
HasAvailableSubCommands determines if a command has available sub commands that need to be shown in the usage/help default template under 'available commands'.
func (*Command) HasExample ¶
HasExample determines if the command has example.
func (*Command) HasFlags ¶
HasFlags checks if the command contains any flags (local plus persistent from the entire structure).
func (*Command) HasHelpSubCommands ¶
HasHelpSubCommands determines if a command has any available 'help' sub commands that need to be shown in the usage/help default template under 'additional help topics'.
func (*Command) HasInheritedFlags ¶
HasInheritedFlags checks if the command has flags inherited from its parent command.
func (*Command) HasLocalFlags ¶
HasLocalFlags checks if the command has flags specifically declared locally.
func (*Command) HasPersistentFlags ¶
HasPersistentFlags checks if the command contains persistent flags.
func (*Command) HasSubCommands ¶
HasSubCommands determines if the command has children commands.
func (*Command) Help ¶
Help puts out the help for the command. Used when a user calls help [command]. Can be defined by user by overriding HelpFunc.
func (*Command) HelpFunc ¶
HelpFunc returns either the function set by SetHelpFunc for this command or a parent, or it returns a function with default help behavior.
func (*Command) HelpTemplate ¶
HelpTemplate return help template for the command.
func (*Command) InheritedFlags ¶
InheritedFlags returns all flags which were inherited from parent commands.
func (*Command) InitDefaultCompletionCmd ¶
func (c *Command) InitDefaultCompletionCmd()
InitDefaultCompletionCmd adds a default 'completion' command to c. This function will do nothing if any of the following is true: 1- the feature has been explicitly disabled by the program, 2- c has no subcommands (to avoid creating one), 3- c already has a 'completion' command provided by the program.
func (*Command) InitDefaultHelpCmd ¶
func (c *Command) InitDefaultHelpCmd()
InitDefaultHelpCmd adds default help command to c. It is called automatically by executing the c or by calling help and usage. If c already has help command or c has no subcommands, it will do nothing.
func (*Command) InitDefaultHelpFlag ¶
func (c *Command) InitDefaultHelpFlag()
InitDefaultHelpFlag adds default help flag to c. It is called automatically by executing the c or by calling help and usage. If c already has help flag, it will do nothing.
func (*Command) InitDefaultVersionFlag ¶
func (c *Command) InitDefaultVersionFlag()
InitDefaultVersionFlag adds default version flag to c. It is called automatically by executing the c. If c already has a version flag, it will do nothing. If c.Version is empty, it will do nothing.
func (*Command) IsAdditionalHelpTopicCommand ¶
IsAdditionalHelpTopicCommand determines if a command is an additional help topic command; additional help topic command is determined by the fact that it is NOT runnable/hidden/deprecated, and has no sub commands that are runnable/hidden/deprecated. Concrete example: https://github.com/spf13/cobra/issues/393#issuecomment-282741924.
func (*Command) IsAvailableCommand ¶
IsAvailableCommand determines if a command is available as a non-help command (this includes all non deprecated/hidden commands).
func (*Command) LocalFlags ¶
LocalFlags returns the local FlagSet specifically set in the current command.
func (*Command) LocalNonPersistentFlags ¶
LocalNonPersistentFlags are flags specific to this command which will NOT persist to subcommands.
func (*Command) MarkFlagCustom ¶
MarkFlagCustom adds the BashCompCustom annotation to the named flag, if it exists. The bash completion script will call the bash function f for the flag.
This will only work for bash completion. It is recommended to instead use c.RegisterFlagCompletionFunc(...) which allows to register a Go function which will work across all shells.
func (*Command) MarkFlagDirname ¶
MarkFlagDirname instructs the various shell completion implementations to limit completions for the named flag to directory names.
func (*Command) MarkFlagFilename ¶
MarkFlagFilename instructs the various shell completion implementations to limit completions for the named flag to the specified file extensions.
func (*Command) MarkFlagRequired ¶
MarkFlagRequired instructs the various shell completion implementations to prioritize the named flag when performing completion, and causes your command to report an error if invoked without the flag.
func (*Command) MarkFlagsMutuallyExclusive ¶
MarkFlagsMutuallyExclusive marks the given flags with annotations so that Cobra errors if the command is invoked with more than one flag from the given set of flags.
func (*Command) MarkFlagsRequiredTogether ¶
MarkFlagsRequiredTogether marks the given flags with annotations so that Cobra errors if the command is invoked with a subset (but not all) of the given flags.
func (*Command) MarkPersistentFlagDirname ¶
MarkPersistentFlagDirname instructs the various shell completion implementations to limit completions for the named persistent flag to directory names.
func (*Command) MarkPersistentFlagFilename ¶
MarkPersistentFlagFilename instructs the various shell completion implementations to limit completions for the named persistent flag to the specified file extensions.
func (*Command) MarkPersistentFlagRequired ¶
MarkPersistentFlagRequired instructs the various shell completion implementations to prioritize the named persistent flag when performing completion, and causes your command to report an error if invoked without the flag.
func (*Command) MarkZshCompPositionalArgumentFile ¶ added in v1.12.5
MarkZshCompPositionalArgumentFile only worked for zsh and its behavior was not consistent with Bash completion. It has therefore been disabled. Instead, when no other completion is specified, file completion is done by default for every argument. One can disable file completion on a per-argument basis by using ValidArgsFunction and ShellCompDirectiveNoFileComp. To achieve file extension filtering, one can use ValidArgsFunction and ShellCompDirectiveFilterFileExt.
Deprecated
func (*Command) MarkZshCompPositionalArgumentWords ¶ added in v1.12.5
MarkZshCompPositionalArgumentWords only worked for zsh. It has therefore been disabled. To achieve the same behavior across all shells, one can use ValidArgs (for the first argument only) or ValidArgsFunction for any argument (can include the first one also).
Deprecated
func (*Command) NameAndAliases ¶
NameAndAliases returns a list of the command name and all aliases
func (*Command) NamePadding ¶
NamePadding returns padding for the name.
func (*Command) NonInheritedFlags ¶
NonInheritedFlags returns all flags which were not inherited from parent commands.
func (*Command) OutOrStderr ¶
OutOrStderr returns output to stderr
func (*Command) OutOrStdout ¶
OutOrStdout returns output to stdout.
func (*Command) ParseFlags ¶
ParseFlags parses persistent flag tree and local flags.
func (*Command) PersistentFlags ¶
PersistentFlags returns the persistent FlagSet specifically set in the current command.
func (*Command) Print ¶
func (c *Command) Print(i ...interface{})
Print is a convenience method to Print to the defined output, fallback to Stderr if not set.
func (*Command) PrintErr ¶
func (c *Command) PrintErr(i ...interface{})
PrintErr is a convenience method to Print to the defined Err output, fallback to Stderr if not set.
func (*Command) PrintErrf ¶
PrintErrf is a convenience method to Printf to the defined Err output, fallback to Stderr if not set.
func (*Command) PrintErrln ¶
func (c *Command) PrintErrln(i ...interface{})
PrintErrln is a convenience method to Println to the defined Err output, fallback to Stderr if not set.
func (*Command) Printf ¶
Printf is a convenience method to Printf to the defined output, fallback to Stderr if not set.
func (*Command) Println ¶
func (c *Command) Println(i ...interface{})
Println is a convenience method to Println to the defined output, fallback to Stderr if not set.
func (*Command) RegisterFlagCompletionFunc ¶
func (c *Command) RegisterFlagCompletionFunc(flagName string, f func(cmd *Command, args []string, toComplete string) ([]string, ShellCompDirective)) error
RegisterFlagCompletionFunc should be called to register a function to provide completion for a flag.
func (*Command) RemoveCommand ¶
RemoveCommand removes one or more commands from a parent command.
func (*Command) ResetCommands ¶
func (c *Command) ResetCommands()
ResetCommands delete parent, subcommand and help command from c.
func (*Command) ResetFlags ¶
func (c *Command) ResetFlags()
ResetFlags deletes all flags from command.
func (*Command) SetArgs ¶
SetArgs sets arguments for the command. It is set to os.Args[1:] by default, if desired, can be overridden particularly useful when testing.
func (*Command) SetCompletionCommandGroupID ¶
SetCompletionCommandGroupID sets the group id of the completion command.
func (*Command) SetContext ¶
SetContext sets context for the command. This context will be overwritten by Command.ExecuteContext or Command.ExecuteContextC.
func (*Command) SetErr ¶
SetErr sets the destination for error messages. If newErr is nil, os.Stderr is used.
func (*Command) SetFlagErrorFunc ¶
SetFlagErrorFunc sets a function to generate an error when flag parsing fails.
func (*Command) SetGlobalNormalizationFunc ¶
func (c *Command) SetGlobalNormalizationFunc(n func(f *flag.FlagSet, name string) flag.NormalizedName)
SetGlobalNormalizationFunc sets a normalization function to all flag sets and also to child commands. The user should not have a cyclic dependency on commands.
func (*Command) SetHelpCommand ¶
SetHelpCommand sets help command.
func (*Command) SetHelpCommandGroupID ¶
SetHelpCommandGroupID sets the group id of the help command.
func (*Command) SetHelpFunc ¶
SetHelpFunc sets help function. Can be defined by Application.
func (*Command) SetHelpTemplate ¶
SetHelpTemplate sets help template to be used. Application can use it to set custom template.
func (*Command) SetOut ¶
SetOut sets the destination for usage messages. If newOut is nil, os.Stdout is used.
func (*Command) SetUsageFunc ¶
SetUsageFunc sets usage function. Usage can be defined by application.
func (*Command) SetUsageTemplate ¶
SetUsageTemplate sets usage template. Can be defined by Application.
func (*Command) SetVersionTemplate ¶
SetVersionTemplate sets version template to be used. Application can use it to set custom template.
func (*Command) SuggestionsFor ¶
SuggestionsFor provides suggestions for the typedName.
func (*Command) Traverse ¶
Traverse the command tree to find the command, and parse args for each parent.
func (*Command) Usage ¶
Usage puts out the usage for the command. Used when a user provides invalid input. Can be defined by user by overriding UsageFunc.
func (*Command) UsageFunc ¶
UsageFunc returns either the function set by SetUsageFunc for this command or a parent, or it returns a default usage function.
func (*Command) UsagePadding ¶
UsagePadding return padding for the usage.
func (*Command) UsageString ¶
UsageString returns usage string.
func (*Command) UsageTemplate ¶
UsageTemplate returns usage template for the command.
func (*Command) ValidateArgs ¶
func (*Command) ValidateFlagGroups ¶
ValidateFlagGroups validates the mutuallyExclusive/requiredAsGroup logic and returns the first error encountered.
func (*Command) ValidateRequiredFlags ¶
ValidateRequiredFlags validates all required flags are present and returns an error otherwise
func (*Command) VersionTemplate ¶
VersionTemplate return version template for the command.
func (*Command) VisitParents ¶
VisitParents visits all parents of the command and invokes fn on each parent.
type CompletionOptions ¶
type CompletionOptions struct { // DisableDefaultCmd prevents Cobra from creating a default 'completion' command DisableDefaultCmd bool // DisableNoDescFlag prevents Cobra from creating the '--no-descriptions' flag // for shells that support completion descriptions DisableNoDescFlag bool // DisableDescriptions turns off all completion descriptions for shells // that support them DisableDescriptions bool // HiddenDefaultCmd makes the default 'completion' command hidden HiddenDefaultCmd bool }
CompletionOptions are the options to control shell completion
type FParseErrWhitelist ¶
type FParseErrWhitelist flag.ParseErrorsWhitelist
FParseErrWhitelist configures Flag parse errors to be ignored
type PositionalArgs ¶
func ExactArgs ¶
func ExactArgs(n int) PositionalArgs
ExactArgs returns an error if there are not exactly n args.
func MatchAll ¶
func MatchAll(pargs ...PositionalArgs) PositionalArgs
MatchAll allows combining several PositionalArgs to work in concert.
func MaximumNArgs ¶
func MaximumNArgs(n int) PositionalArgs
MaximumNArgs returns an error if there are more than N args.
func MinimumNArgs ¶
func MinimumNArgs(n int) PositionalArgs
MinimumNArgs returns an error if there is not at least N args.
func RangeArgs ¶
func RangeArgs(min int, max int) PositionalArgs
RangeArgs returns an error if the number of args is not within the expected range.
type ShellCompDirective ¶
type ShellCompDirective int
ShellCompDirective is a bit map representing the different behaviors the shell can be instructed to have once completions have been provided.
const ( // ShellCompDirectiveError indicates an error occurred and completions should be ignored. ShellCompDirectiveError ShellCompDirective = 1 << iota // ShellCompDirectiveNoSpace indicates that the shell should not add a space // after the completion even if there is a single completion provided. ShellCompDirectiveNoSpace // ShellCompDirectiveNoFileComp indicates that the shell should not provide // file completion even when no completion is provided. ShellCompDirectiveNoFileComp // ShellCompDirectiveFilterFileExt indicates that the provided completions // should be used as file extension filters. // For flags, using Command.MarkFlagFilename() and Command.MarkPersistentFlagFilename() // is a shortcut to using this directive explicitly. The BashCompFilenameExt // annotation can also be used to obtain the same behavior for flags. ShellCompDirectiveFilterFileExt // ShellCompDirectiveFilterDirs indicates that only directory names should // be provided in file completion. To request directory names within another // directory, the returned completions should specify the directory within // which to search. The BashCompSubdirsInDir annotation can be used to // obtain the same behavior but only for flags. ShellCompDirectiveFilterDirs // ShellCompDirectiveKeepOrder indicates that the shell should preserve the order // in which the completions are provided ShellCompDirectiveKeepOrder // ShellCompDirectiveDefault indicates to let the shell perform its default // behavior after completions have been provided. // This one must be last to avoid messing up the iota count. ShellCompDirectiveDefault ShellCompDirective = 0 )
func NoFileCompletions ¶
func NoFileCompletions(cmd *Command, args []string, toComplete string) ([]string, ShellCompDirective)
NoFileCompletions can be used to disable file completion for commands that should not trigger file completions.