diff --git a/README.md b/README.md index e724c35..26b9710 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,7 @@ Yet another command line tool for reading and manipulating yaml files, built on | Command | Description | |--------------| ----------------------------------------------------| | get:value | Get a value for a specific key in a YAML file. | +| get:type | Get the data type of a value in a YAML file. | | lint | Validates that a given YAML file has valid syntax. | | unset:key | Unset a specific key in a YAML file. | | update:key | Change a specific key in a YAML file. | @@ -20,6 +21,7 @@ Yet another command line tool for reading and manipulating yaml files, built on ### Example usage: ./vendor/bin/yaml-cli get:value somefile.yml some-key + ./vendor/bin/yaml-cli get:type somefile.yml some-key ./vendor/bin/yaml-cli lint somefile.yml ./vendor/bin/yaml-cli unset:value somefile.yml some-key ./vendor/bin/yaml-cli update:key somefile.yml old-key new-key