cli
cli copied to clipboard
A simple, fast, and fun package for building command line apps in Go
I'm making a wrapper around the go build tool , so basically I made a build command and I need it to accept any flags without having to specify them...
## 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 for your release? The v2 manual...
## Is there a way to set a custom help template for subcommands? _**I know it's totally possible to set custom templates for the app (CustomAppHelpTemplate) and for commands (CustomHelpTemplate)...
I want to know if the location of the name can be case insensitive, if I can how to do it
## 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 for your release? The v2 manual...
## 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 for your release? The v2 manual...
Suppose I have a go web program named `goweb`, and the subcommand `web` will starts a web daemon. Most importantly, it can have multiple instances at the same time, of...
Here is how I am accessing global flags from a subcommand. This func also handles accessing a global flag when the provided context is also global, because it simplifies code....
How to use a YAML config file to set flags? I've read the docs and tried a couple of things; then waited a month and read them again but, nothing...