nushell/docs/commands/lines.md

23 lines
271 B
Markdown
Raw Normal View History

---
title: lines
layout: command
version: 0.59.0
---
Converts input to lines
2019-10-03 06:09:01 +02:00
## Signature
```> lines --skip-empty```
2019-10-03 06:09:01 +02:00
## Parameters
- `--skip-empty`: skip empty lines
## Examples
Split multi-line string into lines
```shell
> echo $'two(char nl)lines' | lines
```