選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
6543 30ce3731a1
Vendor Update Go Libs (#13444)
3年前
..
.flake8 Update https://github.com/urfave/cli to version 1.2.0 (#6838) 5年前
.gitignore Vendor Update Go Libs (#13166) 3年前
CODE_OF_CONDUCT.md Vendor Update Go Libs (#13166) 3年前
LICENSE Added all required dependencies 7年前
README.md Vendor Update Go Libs (#13166) 3年前
app.go Vendor Update Go Libs (#13444) 3年前
appveyor.yml Vendor Update Go Libs (#13166) 3年前
category.go Vendor Update Go Libs (#13166) 3年前
cli.go Vendor Update Go Libs (#13166) 3年前
command.go Vendor Update Go Libs (#13444) 3年前
context.go Vendor Update Go Libs (#13444) 3年前
docs.go Vendor Update Go Libs (#13166) 3年前
errors.go Update https://github.com/urfave/cli to version 1.2.0 (#6838) 5年前
fish.go Vendor Update Go Libs (#13166) 3年前
flag.go Vendor Update Go Libs (#13166) 3年前
flag_bool.go Vendor Update Go Libs (#13166) 3年前
flag_bool_t.go Vendor Update Go Libs (#13166) 3年前
flag_duration.go Vendor Update Go Libs (#13166) 3年前
flag_float64.go Vendor Update Go Libs (#13166) 3年前
flag_generic.go Vendor Update Go Libs (#13166) 3年前
flag_int.go Vendor Update Go Libs (#13166) 3年前
flag_int64.go Vendor Update Go Libs (#13166) 3年前
flag_int64_slice.go Vendor Update Go Libs (#13444) 3年前
flag_int_slice.go Vendor Update Go Libs (#13444) 3年前
flag_string.go Vendor Update Go Libs (#13166) 3年前
flag_string_slice.go Vendor Update Go Libs (#13444) 3年前
flag_uint.go Vendor Update Go Libs (#13166) 3年前
flag_uint64.go Vendor Update Go Libs (#13166) 3年前
funcs.go Vendor Update Go Libs (#13166) 3年前
go.mod Vendor Update Go Libs (#13166) 3年前
go.sum Vendor Update Go Libs (#13166) 3年前
help.go Vendor Update Go Libs (#13166) 3年前
parse.go Vendor Update Go Libs (#13166) 3年前
sort.go Vendor Update Go Libs (#13166) 3年前
template.go Vendor Update Go Libs (#13166) 3年前

README.md

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"
)
...