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

https://github.com/jwerle/lqueue

Push and shift data to a queue from the command line
https://github.com/jwerle/lqueue

Last synced: over 1 year ago
JSON representation

Push and shift data to a queue from the command line

Awesome Lists containing this project

README

          

lqueue(1)
=====

## install

```sh
$ npm install lqueue -g
```

## usage

### push

```sh
$ lqueue push foo
```

..or from stdin

```sh
$ echo bar | lqueue push
```

### shift

```sh
$ lqueue shift
foo
```

Use the `-v` flag for verbose output.

```sh
$ lqueue push 123 -v
verbose: queue empty
verbose: put (1) 123...
verbose: write ok
```

## license

MIT