mirror of
https://github.com/nushell/nushell
synced 2024-11-15 09:27:08 +00:00
8c0a2d3c15
* Finish updating * a couple improvements * Update renames * cleanup examples
471 B
471 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