nushell/docs/commands/keep.md
JT bff81f24aa
Autogenerate missing docs (#3514)
* Autogenerate missing docs

* Update ansi.md

* Rename question mark command docs

* Delete empty?.md
2021-05-30 12:57:04 +12:00

30 lines
492 B
Markdown

# keep
Keep the number of rows only.
## Usage
```shell
> keep (rows) <subcommand> {flags}
```
## Subcommands
* keep until - Keeps rows until the condition matches.
* keep while - Keeps rows while the condition matches.
## Parameters
* `(rows)` Starting from the front, the number of rows to keep
## Flags
* -h, --help: Display this help message
## Examples
Keep the first row
```shell
> echo [1 2 3] | keep
```
Keep the first four rows
```shell
> echo [1 2 3 4 5] | keep 4
```