COBRA-ADD(1) | Cobra Manual | COBRA-ADD(1) |
cobra-add - Add a command to a Cobra Application
cobra add [OPTIONS]
Add (cobra add) will create a new command, with a license and the appropriate structure for a Cobra-based CLI application, and register it to its parent (default RootCmd).
If you want your command to be public, pass in the command name with an initial uppercase letter.
Example: cobra add server -> resulting in a new cmd/server.go
-p, --parent="RootCmd"
name of parent command for this command
-a, --author="YOUR NAME"
Author name for copyright attribution
--config=""
config file (default is $HOME/.cobra.yaml)
-l, --license=""
Name of license for the project (can provide licensetext in
config)
-b, --projectbase=""
base project directory, e.g. github.com/spf13/
--viper[=true]
Use Viper for configuration
Dec 2015 | github.com/spf13/cobra |