forked from extern/nushell
c0a1d18e3d
* feat: update #4455, regenerate commands' docs * chore: update make_docs script
398 B
398 B
title | layout | version |
---|---|---|
par-each group | command | 0.59.0 |
Runs a block on groups of group_size
rows of a table at a time.
Signature
> par-each group (group_size) (block)
Parameters
group_size
: the size of each groupblock
: the block to run on each group
Examples
Multiplies elements in list
> echo [1 2 3 4] | par-each group 2 { $it.0 + $it.1 }