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

@ -29,6 +29,12 @@ func NewSetCommand() cli.Command {
Name: "set",
Usage: "set the value of a key",
ArgsUsage: "<key> <value>",
Description: `Set sets the value of a key.
When <value> begins with '-', <value> is interpreted as a flag.
Insert '--' for workaround:
$ set -- <key> <value>`,
Flags: []cli.Flag{
cli.IntFlag{Name: "ttl", Value: 0, Usage: "key time-to-live"},
cli.StringFlag{Name: "swap-with-value", Value: "", Usage: "previous value"},