mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
78 lines
860 B
Markdown
78 lines
860 B
Markdown
# Flatten
|
|
This recursively flattens arrays.
|
|
|
|
{% hint style="warning" %}
|
|
Note that versions prior to 4.18 require the 'eval/e' command to be specified. 
|
|
|
|
`yq e <exp> <file>`
|
|
{% endhint %}
|
|
|
|
## Flatten
|
|
Recursively flattens all arrays
|
|
|
|
Given a sample.yml file of:
|
|
```yaml
|
|
- 1
|
|
- - 2
|
|
- - - 3
|
|
```
|
|
then
|
|
```bash
|
|
yq 'flatten' sample.yml
|
|
```
|
|
will output
|
|
```yaml
|
|
- 1
|
|
- 2
|
|
- 3
|
|
```
|
|
|
|
## Flatten with depth of one
|
|
Given a sample.yml file of:
|
|
```yaml
|
|
- 1
|
|
- - 2
|
|
- - - 3
|
|
```
|
|
then
|
|
```bash
|
|
yq 'flatten(1)' sample.yml
|
|
```
|
|
will output
|
|
```yaml
|
|
- 1
|
|
- 2
|
|
- - 3
|
|
```
|
|
|
|
## Flatten empty array
|
|
Given a sample.yml file of:
|
|
```yaml
|
|
- []
|
|
```
|
|
then
|
|
```bash
|
|
yq 'flatten' sample.yml
|
|
```
|
|
will output
|
|
```yaml
|
|
[]
|
|
```
|
|
|
|
## Flatten array of objects
|
|
Given a sample.yml file of:
|
|
```yaml
|
|
- foo: bar
|
|
- - foo: baz
|
|
```
|
|
then
|
|
```bash
|
|
yq 'flatten' sample.yml
|
|
```
|
|
will output
|
|
```yaml
|
|
- foo: bar
|
|
- foo: baz
|
|
```
|
|
|