mirror of
https://github.com/nushell/nushell.git
synced 2025-04-29 07:34:28 +02:00
* Update documents of commands * Change plugin names for register command examples * Remove unused docs [ci skip]
23 lines
275 B
Markdown
23 lines
275 B
Markdown
---
|
|
title: group
|
|
layout: command
|
|
version: 0.59.1
|
|
---
|
|
|
|
Groups input into groups of `group_size`.
|
|
|
|
## Signature
|
|
|
|
```> group (group_size)```
|
|
|
|
## Parameters
|
|
|
|
- `group_size`: the size of each group
|
|
|
|
## Examples
|
|
|
|
Group the a list by pairs
|
|
```shell
|
|
> echo [1 2 3 4] | group 2
|
|
```
|