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

https://github.com/unisharp/n

A nodejs stdin handler for pipeline command.
https://github.com/unisharp/n

Last synced: 15 days ago
JSON representation

A nodejs stdin handler for pipeline command.

Awesome Lists containing this project

README

          

# Using javascript in *nix pipeline.

## Usage

```
echo 'hello world' | n '.split(" ").join(",")'

cat z.diff | n '.match(/^\+/) && console.log(line)';
```