cli
cli copied to clipboard
A simple, fast, and fun package for building command line apps in Go
Global options need to appear before subcommands, not anywhere, why are they designed this way? This is not the same as spf13/cobra. `In urfave/cli, global options are not visible in...
## My urfave/cli version is v2.10.2 ## Checklist - [x] Are you running the latest v2 release? The list of releases is [here](https://github.com/urfave/cli/releases). - [x] Did you check the manual...
A cli flag used for enums. The flag displays all possible enum variations in the cli's help message and verifies the provided input value. ## What type of PR is...
## My urfave/cli version is v1.22.9 ## Checklist - [x] Are you running the latest v1 release? The list of releases is [here](https://github.com/urfave/cli/releases). - [x] Did you check the manual...
## What type of PR is this? - bug ## What this PR does / why we need it: The changes to automatically indent description text added potential for empty...
## Motivation No error is thrown when same command name or child command name is used. Partially Addresses #785 (for v1 only) ## Changes - Added some validation functionality to...
## What type of PR is this? - feature ## What this PR does / why we need it: https://github.com/urfave/cli/issues/1219 I like the idea, but there is no comment from...
Enables commands to be reused across multiple instances of `cli.App` and executed in parallel tests. Turned out to be a pretty easy fix after all 😄 It's likely I didn't...
## What type of PR is this? - feature ## What this PR does / why we need it: This PR add a way of counting number of times a...
Previously I was using "github.com/urfave/cli" v1 and when I entered --help it displayed the flags in the order I filled them in, but when I used v2 all the flags...