nushell/docs/commands/every.md
JT 8c0a2d3c15
Auto-generate markdown command docs (#4451)
* Finish updating

* a couple improvements

* Update renames

* cleanup examples
2022-02-13 21:22:51 -05:00

30 lines
471 B
Markdown

---
title: every
layout: command
version: 0.59.0
---
Show (or skip) every n-th row, starting from the first one.
## Signature
```> every (stride) --skip```
## Parameters
- `stride`: how many rows to skip between (and including) each row returned
- `--skip`: skip the rows that would be returned, instead of selecting them
## Examples
Get every second row
```shell
> [1 2 3 4 5] | every 2
```
Skip every second row
```shell
> [1 2 3 4 5] | every 2 --skip
```