k3s/vendor/github.com/urfave/cli
Brad Davidson 7d3447ceff Bump wharfie to v0.5.1 and use shared decompression code
Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
2021-12-07 12:50:57 -08:00
..
v2 Update Kubernetes to v1.20.2-k3s1 2021-01-13 21:31:53 -08:00
.flake8
.gitignore Bump wharfie to v0.5.1 and use shared decompression code 2021-12-07 12:50:57 -08:00
app.go Bump wharfie to v0.5.1 and use shared decompression code 2021-12-07 12:50:57 -08:00
appveyor.yml
category.go
cli.go
CODE_OF_CONDUCT.md
command.go Bump wharfie to v0.5.1 and use shared decompression code 2021-12-07 12:50:57 -08:00
context.go Bump wharfie to v0.5.1 and use shared decompression code 2021-12-07 12:50:57 -08:00
docs.go
errors.go
fish.go
flag_bool_t.go
flag_bool.go
flag_duration.go
flag_float64.go
flag_generic.go
flag_int64_slice.go Bump wharfie to v0.5.1 and use shared decompression code 2021-12-07 12:50:57 -08:00
flag_int64.go
flag_int_slice.go Bump wharfie to v0.5.1 and use shared decompression code 2021-12-07 12:50:57 -08:00
flag_int.go
flag_string_slice.go Bump wharfie to v0.5.1 and use shared decompression code 2021-12-07 12:50:57 -08:00
flag_string.go
flag_uint64.go
flag_uint.go
flag.go
funcs.go
go.mod
go.sum
help.go
LICENSE
parse.go Bump wharfie to v0.5.1 and use shared decompression code 2021-12-07 12:50:57 -08:00
README.md
sort.go
template.go

cli

Build Status Windows Build Status

GoDoc codebeat Go Report Card codecov

cli is a simple, fast, and fun package for building command line apps in Go. The goal is to enable developers to write fast and distributable command line applications in an expressive way.

Usage Documentation

Usage documentation exists for each major version

Installation

Make sure you have a working Go environment. Go version 1.10+ is supported. See the install instructions for Go.

GOPATH

Make sure your PATH includes the $GOPATH/bin directory so your commands can be easily used:

export PATH=$PATH:$GOPATH/bin

Supported platforms

cli is tested against multiple versions of Go on Linux, and against the latest released version of Go on OS X and Windows. For full details, see ./.travis.yml and ./appveyor.yml.

Using v1 releases

$ go get github.com/urfave/cli
...
import (
  "github.com/urfave/cli"
)
...

Using v2 releases

Warning: v2 is in a pre-release state.

$ go get github.com/urfave/cli.v2
...
import (
  "github.com/urfave/cli.v2" // imports as package "cli"
)
...