2022-02-01 04:34:17 +00:00
|
|
|
# Properties
|
|
|
|
|
|
|
|
Encode to a property file (decode not yet supported). Line comments on value nodes will be copied across.
|
|
|
|
|
|
|
|
By default, empty maps and arrays are not encoded - see below for an example on how to encode a value for these.
|
|
|
|
|
2022-02-06 03:39:46 +00:00
|
|
|
{% hint style="warning" %}
|
|
|
|
Note that versions prior to 4.18 require the 'eval/e' command to be specified. 
|
|
|
|
|
|
|
|
`yq e <exp> <file>`
|
|
|
|
{% endhint %}
|
|
|
|
|
2022-02-01 04:34:17 +00:00
|
|
|
## Encode properties
|
|
|
|
Note that empty arrays and maps are not encoded by default.
|
|
|
|
|
|
|
|
Given a sample.yml file of:
|
|
|
|
```yaml
|
|
|
|
# block comments don't come through
|
|
|
|
person: # neither do comments on maps
|
|
|
|
name: Mike # comments on values appear
|
|
|
|
pets:
|
|
|
|
- cat # comments on array values appear
|
|
|
|
food: [pizza] # comments on arrays do not
|
|
|
|
emptyArray: []
|
|
|
|
emptyMap: []
|
|
|
|
|
|
|
|
```
|
|
|
|
then
|
|
|
|
```bash
|
2022-02-10 01:02:53 +00:00
|
|
|
yq -o=props sample.yml
|
2022-02-01 04:34:17 +00:00
|
|
|
```
|
|
|
|
will output
|
|
|
|
```properties
|
|
|
|
# comments on values appear
|
|
|
|
person.name = Mike
|
|
|
|
|
|
|
|
# comments on array values appear
|
|
|
|
person.pets.0 = cat
|
|
|
|
person.food.0 = pizza
|
|
|
|
```
|
|
|
|
|
|
|
|
## Encode properties: no comments
|
|
|
|
Given a sample.yml file of:
|
|
|
|
```yaml
|
|
|
|
# block comments don't come through
|
|
|
|
person: # neither do comments on maps
|
|
|
|
name: Mike # comments on values appear
|
|
|
|
pets:
|
|
|
|
- cat # comments on array values appear
|
|
|
|
food: [pizza] # comments on arrays do not
|
|
|
|
emptyArray: []
|
|
|
|
emptyMap: []
|
|
|
|
|
|
|
|
```
|
|
|
|
then
|
|
|
|
```bash
|
2022-02-10 01:02:53 +00:00
|
|
|
yq -o=props '... comments = ""' sample.yml
|
2022-02-01 04:34:17 +00:00
|
|
|
```
|
|
|
|
will output
|
|
|
|
```properties
|
|
|
|
person.name = Mike
|
|
|
|
person.pets.0 = cat
|
|
|
|
person.food.0 = pizza
|
|
|
|
```
|
|
|
|
|
|
|
|
## Encode properties: include empty maps and arrays
|
|
|
|
Use a yq expression to set the empty maps and sequences to your desired value.
|
|
|
|
|
|
|
|
Given a sample.yml file of:
|
|
|
|
```yaml
|
|
|
|
# block comments don't come through
|
|
|
|
person: # neither do comments on maps
|
|
|
|
name: Mike # comments on values appear
|
|
|
|
pets:
|
|
|
|
- cat # comments on array values appear
|
|
|
|
food: [pizza] # comments on arrays do not
|
|
|
|
emptyArray: []
|
|
|
|
emptyMap: []
|
|
|
|
|
|
|
|
```
|
|
|
|
then
|
|
|
|
```bash
|
2022-02-10 01:02:53 +00:00
|
|
|
yq -o=props '(.. | select( (tag == "!!map" or tag =="!!seq") and length == 0)) = ""' sample.yml
|
2022-02-01 04:34:17 +00:00
|
|
|
```
|
|
|
|
will output
|
|
|
|
```properties
|
|
|
|
# comments on values appear
|
|
|
|
person.name = Mike
|
|
|
|
|
|
|
|
# comments on array values appear
|
|
|
|
person.pets.0 = cat
|
|
|
|
person.food.0 = pizza
|
|
|
|
emptyArray =
|
|
|
|
emptyMap =
|
|
|
|
```
|
|
|
|
|
2022-02-10 01:02:53 +00:00
|
|
|
## Decode properties
|
|
|
|
Given a sample.properties file of:
|
|
|
|
```properties
|
|
|
|
# comments on values appear
|
|
|
|
person.name = Mike
|
|
|
|
|
|
|
|
# comments on array values appear
|
|
|
|
person.pets.0 = cat
|
|
|
|
person.food.0 = pizza
|
|
|
|
|
|
|
|
```
|
|
|
|
then
|
|
|
|
```bash
|
|
|
|
yq -p=props sample.properties
|
|
|
|
```
|
|
|
|
will output
|
|
|
|
```yaml
|
|
|
|
person:
|
|
|
|
name: Mike # comments on values appear
|
|
|
|
pets:
|
|
|
|
- cat # comments on array values appear
|
|
|
|
food:
|
|
|
|
- pizza
|
|
|
|
```
|
|
|
|
|
|
|
|
## Roundtrip
|
|
|
|
Given a sample.properties file of:
|
|
|
|
```properties
|
|
|
|
# comments on values appear
|
|
|
|
person.name = Mike
|
|
|
|
|
|
|
|
# comments on array values appear
|
|
|
|
person.pets.0 = cat
|
|
|
|
person.food.0 = pizza
|
|
|
|
|
|
|
|
```
|
|
|
|
then
|
|
|
|
```bash
|
|
|
|
yq -p=props -o=props '.person.pets.0 = "dog"' sample.properties
|
|
|
|
```
|
|
|
|
will output
|
|
|
|
```properties
|
|
|
|
# comments on values appear
|
|
|
|
person.name = Mike
|
|
|
|
|
|
|
|
# comments on array values appear
|
|
|
|
person.pets.0 = dog
|
|
|
|
person.food.0 = pizza
|
|
|
|
```
|
|
|
|
|
|
|
|
## Empty doc
|
|
|
|
Given a sample.properties file of:
|
|
|
|
```properties
|
|
|
|
|
|
|
|
```
|
|
|
|
then
|
|
|
|
```bash
|
|
|
|
yq -p=props sample.properties
|
|
|
|
```
|
|
|
|
will output
|
|
|
|
```yaml
|
|
|
|
```
|
|
|
|
|