mirror of
https://github.com/danbulant/nushell
synced 2026-05-19 12:29:03 +00:00
470 B
470 B
| title | layout | version |
|---|---|---|
| every | command | 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
> [1 2 3 4 5] | every 2
Skip every second row
> [1 2 3 4 5] | every 2 --skip