nushell/docs/commands/each-group.md
Fernando Herrera dbcadbc12c moved folders
2022-02-07 19:23:12 +00:00

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 }