Fix up kv put help output

This commit is contained in:
Seth Vargo 2016-09-26 16:11:23 -07:00
parent e3430e6806
commit 90f4953b47
No known key found for this signature in database
GPG Key ID: 905A90C2949E8787
1 changed files with 5 additions and 2 deletions

View File

@ -27,8 +27,7 @@ func (c *KVPutCommand) Help() string {
Usage: consul kv put [options] KEY [DATA]
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
transport:
any type.
$ 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
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
key-value pair at the specified path: