Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zoetrope/yiq
interactive YAML query tool using yq expressions
https://github.com/zoetrope/yiq
Last synced: about 1 month ago
JSON representation
interactive YAML query tool using yq expressions
- Host: GitHub
- URL: https://github.com/zoetrope/yiq
- Owner: zoetrope
- License: mit
- Fork: true (fiatjaf/jiq)
- Created: 2021-04-20T04:35:46.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-04-22T05:38:14.000Z (over 3 years ago)
- Last Synced: 2024-08-03T17:12:02.470Z (5 months ago)
- Language: Go
- Homepage:
- Size: 3.41 MB
- Stars: 8
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesomeness - yiq - You can drill down interactively by using yq filtering queries. (Productivity / Kubernetes)
README
# yiq
It's [jiq](https://github.com/fiatjaf/jiq) with [yq](https://github.com/mikefarah/yq).
You can drill down interactively by using [yq](https://github.com/mikefarah/yq) filtering queries.
yiq uses [yq](https://github.com/mikefarah/yq) internally, and it **requires** you to have `yq` in your `PATH`.
## Demo
T.B.D.
## Installation
Either [prebuilt binary for your system](https://github.com/fiatjaf/jiq/releases) (and make sure to `chmod +x` it first) or install/compile with Go:
```
go get github.com/zoetrope/yiq/cmd/yiq
```If you don't have `yq` installed, follow instructions at https://github.com/mikefarah/yq/releases and make sure to put it in your `PATH`.
## Usage
### Quick start
* [simple example](#simple-example)
#### simple example
```
cat > sample.yaml <