yq/pkg/yqlib/doc/operators/min.md
Matt Benson 101cf14b8c
min/max operators (#1992)
* min/max operators

* min, max operator headers
2024-03-30 13:34:36 +11:00

411 B

Minimum int

Given a sample.yml file of:

- 99
- 16
- 12
- 6
- 66

then

yq 'min' sample.yml

will output

6

Minimum string

Given a sample.yml file of:

- foo
- bar
- baz

then

yq 'min' sample.yml

will output

bar

Minimum of empty

Given a sample.yml file of:

[]

then

yq 'min' sample.yml

will output