forked from extern/nushell
8c0a2d3c15
* Finish updating * a couple improvements * Update renames * cleanup examples
34 lines
626 B
Markdown
34 lines
626 B
Markdown
---
|
|
title: split-by
|
|
layout: command
|
|
version: 0.59.0
|
|
---
|
|
|
|
Create a new table splitted.
|
|
|
|
## Signature
|
|
|
|
```> split-by (splitter)```
|
|
|
|
## Parameters
|
|
|
|
- `splitter`: the splitter value to use
|
|
|
|
## Examples
|
|
|
|
split items by column named "lang"
|
|
```shell
|
|
>
|
|
{
|
|
'2019': [
|
|
{ name: 'andres', lang: 'rb', year: '2019' },
|
|
{ name: 'jt', lang: 'rs', year: '2019' }
|
|
],
|
|
'2021': [
|
|
{ name: 'storm', lang: 'rs', 'year': '2021' }
|
|
]
|
|
} | split-by lang
|
|
|
|
```
|
|
|