commit | 8c479d7744eb3c43225d2117beb46b453c83e1f3 | [log] [tgz] |
---|---|---|
author | Andrew Jackura <ajackura@google.com> | Mon Feb 29 07:06:45 2016 -0500 |
committer | Andrew Jackura <ajackura@google.com> | Mon Feb 29 07:06:45 2016 -0500 |
tree | 46817e65ea6630cfd6eb5fcb4d049b8fd4a14245 | |
parent | 469c15c3efc8dc7b0fab861dd37b4967b90e703c [diff] | |
parent | 79ca8c76e24ed1ef1272b85d8d00872f547a8d00 [diff] |
Merge pull request #2 from kotakanbe/patch-1 update README.md
Subcommands is a Go package that implements a simple way for a single command to have many subcommands, each of which takes arguments and so forth.
This is not an official Google product.
Set up a ‘print’ subcommand:
import (
"flag"
"fmt"
"os"
"strings"
"github.com/google/subcommands"
"golang.org/x/net/context"
)
type printCmd struct {
capitalize bool
}
func (*printCmd) Name() string { return "print" }
func (*printCmd) Synopsis() string { return "Print args to stdout." }
func (*printCmd) Usage() string {
return `print [-capitalize] <some text>:
Print args to stdout.
`
}
func (p *printCmd) SetFlags(f *flag.FlagSet) {
f.BoolVar(&p.capitalize, "capitalize", false, "capitalize output")
}
func (p *printCmd) Execute(_ context.Context, f *flag.FlagSet, _ ...interface{}) subcommands.ExitStatus {
for _, arg := range f.Args() {
if p.capitalize {
arg = strings.ToUpper(arg)
}
fmt.Printf("%s ", arg)
}
fmt.Println()
return subcommands.ExitSuccess
}
Register using the default Commander, also use some built in subcommands, finally run Execute using ExitStatus as the exit code:
func main() {
subcommands.Register(subcommands.HelpCommand(), "")
subcommands.Register(subcommands.FlagsCommand(), "")
subcommands.Register(subcommands.CommandsCommand(), "")
subcommands.Register(&printCmd{}, "")
flag.Parse()
ctx := context.Background()
os.Exit(int(subcommands.Execute(ctx)))
}