mirror of
https://github.com/nushell/nushell.git
synced 2024-11-23 00:43:33 +01:00
bff81f24aa
* Autogenerate missing docs * Update ansi.md * Rename question mark command docs * Delete empty?.md
406 B
406 B
each group
Runs a block on groups of group_size
rows of a table at a time.
Usage
> each group <group_size> <block> {flags}
Parameters
<group_size>
the size of each group<block>
the block to run on each group
Flags
- -h, --help: Display this help message
Examples
Echo the sum of each pair
> echo [1 2 3 4] | each group 2 { echo $it | math sum }