Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

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 <