5a624affb8
So I described the help command in your help command so you can help command while you help command
50 lines
882 B
Go
50 lines
882 B
Go
package cli
|
|
|
|
import "os"
|
|
import "text/tabwriter"
|
|
import "text/template"
|
|
|
|
type HelpData struct {
|
|
Name string
|
|
Usage string
|
|
Commands []Command
|
|
Version string
|
|
}
|
|
|
|
var HelpCommand = Command{
|
|
Name: "help",
|
|
ShortName: "h",
|
|
Usage: "Shows a list of commands or help for one command",
|
|
}
|
|
|
|
func init() {
|
|
HelpCommand.Action = ShowHelp
|
|
}
|
|
|
|
func ShowHelp(name string) {
|
|
helpTemplate := `NAME:
|
|
{{.Name}} - {{.Usage}}
|
|
|
|
USAGE:
|
|
{{.Name}} [global options] command [command options] [arguments...]
|
|
|
|
VERSION:
|
|
{{.Version}}
|
|
|
|
COMMANDS:
|
|
{{range .Commands}}{{.Name}}{{with .ShortName}}, {{.}}{{end}}{{ "\t" }}{{.Usage}}
|
|
{{end}}
|
|
`
|
|
data := HelpData{
|
|
Name,
|
|
Usage,
|
|
append(Commands, HelpCommand),
|
|
Version,
|
|
}
|
|
|
|
w := tabwriter.NewWriter(os.Stdout, 0, 8, 1, '\t', 0)
|
|
t := template.Must(template.New("help").Parse(helpTemplate))
|
|
t.Execute(w, data)
|
|
w.Flush()
|
|
}
|