yq/pkg/yqlib/doc/operators/max.md
2024-03-27 15:56:32 -05:00

412 B

Maximum int

Given a sample.yml file of:

- 99
- 16
- 12
- 6
- 66

then

yq 'max' sample.yml

will output

99

Maximum string

Given a sample.yml file of:

- foo
- bar
- baz

then

yq 'max' sample.yml

will output

foo

Maximum of empty

Given a sample.yml file of:

[]

then

yq 'max' sample.yml

will output