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

https://github.com/jwerle/lstack

Push and pop data to a stack from the command line
https://github.com/jwerle/lstack

Last synced: over 1 year ago
JSON representation

Push and pop data to a stack from the command line

Awesome Lists containing this project

README

          

lstack(1)
=====

## install

```sh
$ npm install lstack -g
```

## usage

### push

```sh
$ lstack push foo
```

..or from stdin

```sh
$ echo bar | lstack push
```

### pop

```sh
$ lstack pop
bar
```

Use the `-v` flag for verbose output.

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

## license

MIT