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

https://github.com/mattn/qq


https://github.com/mattn/qq

Last synced: 8 months ago
JSON representation

Awesome Lists containing this project

README

          

# qq

[![Build Status](https://travis-ci.org/mattn/qq.svg?branch=master)](https://travis-ci.org/mattn/qq)

[![Coverage Status](https://coveralls.io/repos/github/mattn/qq/badge.svg?branch=master)](https://coveralls.io/github/mattn/qq?branch=master)

Select stdin with query.

## Usage

```
$ ps | qq -q "select pid from stdin"
9324
16344
13824
```

```
$ ps | qq -q "select command from stdin where pid = 9324"
/usr/bin/grep
```

## Requirements

* go

## Installation
Library install
```
$ go get github.com/mattn/qq
```
or Command install
```
$ go get github.com/mattn/qq/...
```

## License

MIT

## Author

Yasuhiro Matsumoto (a.k.a. mattn)