paste
Merge lines from multiple files side by side using a configurable delimiter, combining columns into a table.
Instructions
Merge corresponding lines from multiple files side by side, separated by a configurable delimiter (default tab). Read-only, no side effects. Returns JSON with merged lines by default; use --raw for plain output. Use to combine columns from separate files into a table. Not for key-based joining — use 'join' for field-matched merging. Not for simple concatenation — use 'cat'. See also 'join', 'cat'.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| delimiter | No | Delimiter inserted between columns. | |
| encoding | No | Text encoding. | utf-8 |
| max_lines | No | Maximum JSON lines to emit. | |
| paths | No | Files to merge, or '-' for stdin. Defaults to stdin. | |
| raw | No | Write pasted text without a JSON envelope. |