etcdctl, etcdctlv3: add help message for non-valid value arg

Unix commands interprets argument value of first character '-'
as a flag. And this won't be fixed in our upstream CLI libraries.
This adds help message to show users workarounds.

Addressing https://github.com/coreos/etcd/issues/2020.
This commit is contained in:
Gyu-Ho Lee
2016-01-13 09:25:24 -08:00
parent ca9ad6897a
commit 054db2e3cf
2 changed files with 17 additions and 2 deletions

View File

@ -31,9 +31,18 @@ var (
// NewPutCommand returns the cobra command for "put".
func NewPutCommand() *cobra.Command {
cmd := &cobra.Command{
Use: "put",
Use: "put [options] <key> <value>",
Short: "Put puts the given key into the store.",
Run: putCommandFunc,
Long: `
Put puts the given key into the store.
When <value> begins with '-', <value> is interpreted as a flag.
Insert '--' for workaround:
$ put <key> -- <value>
$ put -- <key> <value>
`,
Run: putCommandFunc,
}
cmd.Flags().StringVar(&leaseStr, "lease", "0", "lease ID attached to the put key")
return cmd