mirror of
https://github.com/mikefarah/yq.git
synced 2024-12-19 20:19:04 +00:00
15 lines
250 B
Markdown
15 lines
250 B
Markdown
## Equals Operator
|
|
|
|
This is a boolean operator that will return ```true``` if the LHS is equal to the RHS and ``false`` otherwise.
|
|
|
|
```
|
|
.a == .b
|
|
```
|
|
|
|
It is most often used with the select operator to find particular nodes:
|
|
|
|
```
|
|
select(.a == .b)
|
|
```
|
|
|