2015-11-02 18:53:04 +03:00
|
|
|
![cobra logo](https://cloud.githubusercontent.com/assets/173412/10886352/ad566232-814f-11e5-9cd0-aa101788c117.png)
|
2013-09-04 02:45:49 +04:00
|
|
|
|
2022-03-10 18:19:35 +03:00
|
|
|
Cobra is a library for creating powerful modern CLI applications.
|
2015-10-29 20:14:06 +03:00
|
|
|
|
2022-05-17 21:28:13 +03:00
|
|
|
Cobra is used in many Go projects such as [Kubernetes](https://kubernetes.io/),
|
2022-07-07 07:54:19 +03:00
|
|
|
[Hugo](https://gohugo.io), and [GitHub CLI](https://github.com/cli/cli) to
|
2020-04-16 20:00:24 +03:00
|
|
|
name a few. [This list](./projects_using_cobra.md) contains a more extensive list of projects using Cobra.
|
2013-09-04 02:45:49 +04:00
|
|
|
|
2022-12-12 17:00:41 +03:00
|
|
|
[![](https://img.shields.io/github/workflow/status/spf13/cobra/Test?longCache=tru&label=Test&logo=github%20actions&logoColor=fff)](https://git.internal/re/cobra/actions?query=workflow%3ATest)
|
|
|
|
[![Go Reference](https://pkg.go.dev/badge/git.internal/re/cobra.svg)](https://pkg.go.dev/git.internal/re/cobra)
|
|
|
|
[![Go Report Card](https://goreportcard.com/badge/git.internal/re/cobra)](https://goreportcard.com/report/git.internal/re/cobra)
|
2020-07-31 18:53:44 +03:00
|
|
|
[![Slack](https://img.shields.io/badge/Slack-cobra-brightgreen)](https://gophers.slack.com/archives/CD3LP1199)
|
2013-09-25 01:08:47 +04:00
|
|
|
|
2015-11-19 06:56:25 +03:00
|
|
|
# Overview
|
2013-09-04 02:45:49 +04:00
|
|
|
|
2015-10-29 20:14:06 +03:00
|
|
|
Cobra is a library providing a simple interface to create powerful modern CLI
|
|
|
|
interfaces similar to git & go tools.
|
|
|
|
|
|
|
|
Cobra provides:
|
2015-11-15 08:46:43 +03:00
|
|
|
* Easy subcommand-based CLIs: `app server`, `app fetch`, etc.
|
|
|
|
* Fully POSIX-compliant flags (including short & long versions)
|
|
|
|
* Nested subcommands
|
2015-10-29 20:14:06 +03:00
|
|
|
* Global, local and cascading flags
|
2015-11-15 08:46:43 +03:00
|
|
|
* Intelligent suggestions (`app srver`... did you mean `app server`?)
|
2015-10-29 20:14:06 +03:00
|
|
|
* Automatic help generation for commands and flags
|
2022-10-10 23:59:11 +03:00
|
|
|
* Grouping help for subcommands
|
2015-10-29 20:14:06 +03:00
|
|
|
* Automatic help flag recognition of `-h`, `--help`, etc.
|
2020-06-29 22:52:14 +03:00
|
|
|
* Automatically generated shell autocomplete for your application (bash, zsh, fish, powershell)
|
2015-10-29 20:14:06 +03:00
|
|
|
* Automatically generated man pages for your application
|
|
|
|
* Command aliases so you can change things without breaking them
|
2017-05-01 17:51:43 +03:00
|
|
|
* The flexibility to define your own help, usage, etc.
|
2022-05-17 21:28:13 +03:00
|
|
|
* Optional seamless integration with [viper](https://github.com/spf13/viper) for 12-factor apps
|
2013-09-04 02:45:49 +04:00
|
|
|
|
2015-11-19 06:56:25 +03:00
|
|
|
# Concepts
|
2013-09-04 02:45:49 +04:00
|
|
|
|
2015-11-19 06:56:25 +03:00
|
|
|
Cobra is built on a structure of commands, arguments & flags.
|
2013-09-04 02:45:49 +04:00
|
|
|
|
2015-11-19 06:56:25 +03:00
|
|
|
**Commands** represent actions, **Args** are things and **Flags** are modifiers for those actions.
|
|
|
|
|
2020-12-04 22:15:09 +03:00
|
|
|
The best applications read like sentences when used, and as a result, users
|
|
|
|
intuitively know how to interact with them.
|
2015-11-19 06:56:25 +03:00
|
|
|
|
2015-12-22 23:28:38 +03:00
|
|
|
The pattern to follow is
|
2022-09-12 00:48:42 +03:00
|
|
|
`APPNAME VERB NOUN --ADJECTIVE`
|
2015-11-19 06:56:25 +03:00
|
|
|
or
|
2022-09-12 00:48:42 +03:00
|
|
|
`APPNAME COMMAND ARG --FLAG`.
|
2015-11-19 06:56:25 +03:00
|
|
|
|
|
|
|
A few good real world examples may better illustrate this point.
|
2013-09-04 02:45:49 +04:00
|
|
|
|
2015-11-15 08:46:43 +03:00
|
|
|
In the following example, 'server' is a command, and 'port' is a flag:
|
2013-09-04 02:45:49 +04:00
|
|
|
|
2017-04-29 13:02:02 +03:00
|
|
|
hugo server --port=1313
|
2015-11-19 06:56:25 +03:00
|
|
|
|
|
|
|
In this command we are telling Git to clone the url bare.
|
2013-09-04 02:45:49 +04:00
|
|
|
|
2017-04-29 13:02:02 +03:00
|
|
|
git clone URL --bare
|
2015-11-19 06:56:25 +03:00
|
|
|
|
|
|
|
## Commands
|
2013-09-04 02:45:49 +04:00
|
|
|
|
|
|
|
Command is the central point of the application. Each interaction that
|
|
|
|
the application supports will be contained in a Command. A command can
|
|
|
|
have children commands and optionally run an action.
|
|
|
|
|
2015-11-15 08:46:43 +03:00
|
|
|
In the example above, 'server' is the command.
|
2013-09-04 02:45:49 +04:00
|
|
|
|
2022-12-12 17:00:41 +03:00
|
|
|
[More about cobra.Command](https://pkg.go.dev/git.internal/re/cobra#Command)
|
2013-09-04 02:45:49 +04:00
|
|
|
|
2015-11-19 06:56:25 +03:00
|
|
|
## Flags
|
2013-09-04 02:45:49 +04:00
|
|
|
|
2017-10-02 12:32:00 +03:00
|
|
|
A flag is a way to modify the behavior of a command. Cobra supports
|
2015-11-15 08:46:43 +03:00
|
|
|
fully POSIX-compliant flags as well as the Go [flag package](https://golang.org/pkg/flag/).
|
2014-01-12 09:34:06 +04:00
|
|
|
A Cobra command can define flags that persist through to children commands
|
2013-11-05 21:40:10 +04:00
|
|
|
and flags that are only available to that command.
|
2013-09-04 02:45:49 +04:00
|
|
|
|
2015-11-15 08:46:43 +03:00
|
|
|
In the example above, 'port' is the flag.
|
2013-09-04 02:45:49 +04:00
|
|
|
|
2013-11-05 21:40:10 +04:00
|
|
|
Flag functionality is provided by the [pflag
|
2017-05-12 21:40:24 +03:00
|
|
|
library](https://github.com/spf13/pflag), a fork of the flag standard library
|
2015-11-15 08:46:43 +03:00
|
|
|
which maintains the same interface while adding POSIX compliance.
|
2013-11-05 21:40:10 +04:00
|
|
|
|
2015-11-19 06:56:25 +03:00
|
|
|
# Installing
|
2015-11-15 08:46:43 +03:00
|
|
|
Using Cobra is easy. First, use `go get` to install the latest version
|
2022-03-10 18:19:35 +03:00
|
|
|
of the library.
|
2013-09-04 02:45:49 +04:00
|
|
|
|
2022-03-10 18:19:35 +03:00
|
|
|
```
|
2022-12-12 17:00:41 +03:00
|
|
|
go get -u git.internal/re/cobra@latest
|
2022-03-10 18:19:35 +03:00
|
|
|
```
|
2013-09-04 02:45:49 +04:00
|
|
|
|
2015-11-15 08:46:43 +03:00
|
|
|
Next, include Cobra in your application:
|
2013-09-04 02:45:49 +04:00
|
|
|
|
2015-11-15 08:46:43 +03:00
|
|
|
```go
|
2022-12-12 17:00:41 +03:00
|
|
|
import "git.internal/re/cobra"
|
2015-11-15 08:46:43 +03:00
|
|
|
```
|
2013-09-04 02:45:49 +04:00
|
|
|
|
2021-06-29 07:51:57 +03:00
|
|
|
# Usage
|
2022-03-10 18:19:35 +03:00
|
|
|
`cobra-cli` is a command line program to generate cobra applications and command files.
|
|
|
|
It will bootstrap your application scaffolding to rapidly
|
|
|
|
develop a Cobra-based application. It is the easiest way to incorporate Cobra into your application.
|
|
|
|
|
|
|
|
It can be installed by running:
|
|
|
|
|
|
|
|
```
|
2022-12-12 17:00:41 +03:00
|
|
|
go install git.internal/re/cobra-cli@latest
|
2022-03-10 18:19:35 +03:00
|
|
|
```
|
2015-11-19 06:56:25 +03:00
|
|
|
|
2022-12-12 17:00:41 +03:00
|
|
|
For complete details on using the Cobra-CLI generator, please read [The Cobra Generator README](https://git.internal/re/cobra-cli/blob/main/README.md)
|
2021-07-02 17:58:34 +03:00
|
|
|
|
|
|
|
For complete details on using the Cobra library, please read the [The Cobra User Guide](user_guide.md).
|
2018-03-01 09:50:20 +03:00
|
|
|
|
2017-10-02 12:32:00 +03:00
|
|
|
# License
|
2013-09-04 02:45:49 +04:00
|
|
|
|
2022-12-12 17:00:41 +03:00
|
|
|
Cobra is released under the Apache 2.0 license. See [LICENSE.txt](https://git.internal/re/cobra/blob/master/LICENSE.txt)
|