mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-13 22:38:04 +00:00
21 lines
480 B
Markdown
21 lines
480 B
Markdown
# yq
|
|
yq is a lightweight and portable command-line YAML processor
|
|
|
|
The aim of the project is to be the [jq](https://github.com/stedolan/jq) or sed of yaml files.
|
|
|
|
## Install
|
|
On MacOS:
|
|
```
|
|
brew install yq
|
|
```
|
|
On Ubuntu and other Linux distros supporting `snap` packages:
|
|
```
|
|
snap install yq
|
|
```
|
|
or, [Download latest binary](https://github.com/mikefarah/yq/releases/latest) or alternatively:
|
|
```
|
|
go get github.com/mikefarah/yq
|
|
```
|
|
|
|
[View on GitHub](https://github.com/mikefarah/yq)
|