Watch
1
0
Fork
You've already forked golang-github-hashicorp-cli
0
No description
  • Go 99.5%
  • Makefile 0.5%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
Daniel Baumann db521c3bac
Completing references in copyright.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2026-07-24 09:03:30 +02:00
.github Adding upstream version 1.1.7. 2026-05-10 21:15:01 +02:00
debian Completing references in copyright. 2026-07-24 09:03:30 +02:00
autocomplete.go Adding upstream version 1.1.7. 2026-05-10 21:15:01 +02:00
cli.go Adding upstream version 1.1.7. 2026-05-10 21:15:01 +02:00
cli_test.go Adding upstream version 1.1.7. 2026-05-10 21:15:01 +02:00
command.go Adding upstream version 1.1.7. 2026-05-10 21:15:01 +02:00
command_mock.go Adding upstream version 1.1.7. 2026-05-10 21:15:01 +02:00
command_mock_test.go Adding upstream version 1.1.7. 2026-05-10 21:15:01 +02:00
go.mod Adding upstream version 1.1.7. 2026-05-10 21:15:01 +02:00
go.sum Adding upstream version 1.1.7. 2026-05-10 21:15:01 +02:00
help.go Adding upstream version 1.1.7. 2026-05-10 21:15:01 +02:00
LICENSE Adding upstream version 1.1.7. 2026-05-10 21:15:01 +02:00
Makefile Adding upstream version 1.1.7. 2026-05-10 21:15:01 +02:00
README.md Adding upstream version 1.1.7. 2026-05-10 21:15:01 +02:00
ui.go Adding upstream version 1.1.7. 2026-05-10 21:15:01 +02:00
ui_colored.go Adding upstream version 1.1.7. 2026-05-10 21:15:01 +02:00
ui_common.go Adding upstream version 1.1.7. 2026-05-10 21:15:01 +02:00
ui_concurrent.go Adding upstream version 1.1.7. 2026-05-10 21:15:01 +02:00
ui_concurrent_test.go Adding upstream version 1.1.7. 2026-05-10 21:15:01 +02:00
ui_js.go Adding upstream version 1.1.7. 2026-05-10 21:15:01 +02:00
ui_mock.go Adding upstream version 1.1.7. 2026-05-10 21:15:01 +02:00
ui_mock_test.go Adding upstream version 1.1.7. 2026-05-10 21:15:01 +02:00
ui_test.go Adding upstream version 1.1.7. 2026-05-10 21:15:01 +02:00
ui_writer.go Adding upstream version 1.1.7. 2026-05-10 21:15:01 +02:00
ui_writer_test.go Adding upstream version 1.1.7. 2026-05-10 21:15:01 +02:00

Go CLI Library GoDoc

cli is a library for implementing command-line interfaces in Go. cli is the library that powers the CLI for Packer, Consul, Vault, Terraform, Nomad, and more.

Features

  • Easy sub-command based CLIs: cli foo, cli bar, etc.

  • Support for nested subcommands such as cli foo bar.

  • Optional support for default subcommands so cli does something other than error.

  • Support for shell autocompletion of subcommands, flags, and arguments with callbacks in Go. You don't need to write any shell code.

  • Automatic help generation for listing subcommands.

  • Automatic help flag recognition of -h, --help, etc.

  • Automatic version flag recognition of -v, --version.

  • Helpers for interacting with the terminal, such as outputting information, asking for input, etc. These are optional, you can always interact with the terminal however you choose.

  • Use of Go interfaces/types makes augmenting various parts of the library a piece of cake.

Example

Below is a simple example of creating and running a CLI

package main

import (
	"log"
	"os"

	"github.com/hashicorp/cli"
)

func main() {
	c := cli.NewCLI("app", "1.0.0")
	c.Args = os.Args[1:]
	c.Commands = map[string]cli.CommandFactory{
		"foo": fooCommandFactory,
		"bar": barCommandFactory,
	}

	exitStatus, err := c.Run()
	if err != nil {
		log.Println(err)
	}

	os.Exit(exitStatus)
}