Sha256: d31dfa358a88cfaaf1357fa175beceb3da2eda1f72891f935d6226c42c143418

Contents?: true

Size: 600 Bytes

Versions: 3

Compression:

Stored size: 600 Bytes

Contents

# Command file input plugin for Embulk

This plugin runs a command and reads data from its stdout (or stderr).

## Overview

* **Plugin type**: file input
* **Resume supported**: yes (no parallelism)

## Configuration

- **command**: command line (string, required)
- **pipe**: stdout or stderr (string, default: stdout)

The **command** is exected using a shell. So it can include pipe (`|`), environment variables (`$VAR`), redirects, and so on.

## Example

```yaml
in:
  type: command
  command: echo "a,c,c" && echo "1,2,3" && echo "10,11,12" | grep -v 10
```

## Build

```
$ ./gradlew gem
```

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
embulk-input-command-0.1.3 README.md
embulk-input-command-0.1.2 README.md
embulk-input-command-0.1.1 README.md