Browse Source

Fix up kv put help output

pull/2360/head
Seth Vargo 8 years ago
parent
commit
d0ac899f79
No known key found for this signature in database
GPG Key ID: 905A90C2949E8787
  1. 7
      command/kv_put.go

7
command/kv_put.go

@ -27,8 +27,7 @@ func (c *KVPutCommand) Help() string {
Usage: consul kv put [options] KEY [DATA] Usage: consul kv put [options] KEY [DATA]
Writes the data to the given path in the key-value store. The data can be of Writes the data to the given path in the key-value store. The data can be of
any type, but it will be transported as a base64-encoded string for safe any type.
transport:
$ consul kv put config/redis/maxconns 5 $ consul kv put config/redis/maxconns 5
@ -37,6 +36,10 @@ Usage: consul kv put [options] KEY [DATA]
$ consul kv put config/program/license @license.lic $ consul kv put config/program/license @license.lic
Or it can be read from stdin using the "-" symbol:
$ echo "abcd1234" | consul kv put config/program/license -
The DATA argument itself is optional. If omitted, this will create an empty The DATA argument itself is optional. If omitted, this will create an empty
key-value pair at the specified path: key-value pair at the specified path:

Loading…
Cancel
Save