1
0
mirror of https://github.com/taigrr/yq synced 2025-01-18 04:53:17 -08:00
yq/README.md
2020-06-16 01:19:03 +00:00

37 lines
613 B
Markdown

---
description: yq is a lightweight and portable command-line YAML processor
---
# Yq
### Install[ΒΆ]() <a id="install"></a>
On MacOS:
```text
brew install yq
```
On Ubuntu and other Linux distros supporting `snap` packages:
```text
snap install yq
```
On Ubuntu 16.04 or higher from Debian package:
```text
sudo add-apt-repository ppa:rmescandon/yq
sudo apt update
sudo apt install yq -y
```
or, [Download latest binary](https://github.com/mikefarah/yq/releases/latest) or alternatively:
```text
GO111MODULE=on go get github.com/mikefarah/yq/v2
```
[View on GitHub](https://github.com/mikefarah/yq)