mirror of
https://github.com/mikefarah/yq.git
synced 2024-12-19 20:19:04 +00:00
473 B
473 B
Reverse
Reverses the order of the items in an array
Reverse
Given a sample.yml file of:
[1, 2, 3]
then
yq 'reverse' sample.yml
will output
[3, 2, 1]
Sort descending by string field
Use sort with reverse to sort in descending order.
Given a sample.yml file of:
[{a: banana}, {a: cat}, {a: apple}]
then
yq 'sort_by(.a) | reverse' sample.yml
will output
[{a: cat}, {a: banana}, {a: apple}]