mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-14 23:28:06 +00:00
485 B
485 B
Max
Computes the maximum among an incoming sequence of scalar values.
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