mirror of
https://github.com/nushell/nushell.git
synced 2024-11-23 17:03:45 +01:00
c0a1d18e3d
* feat: update #4455, regenerate commands' docs * chore: update make_docs script
34 lines
704 B
Markdown
34 lines
704 B
Markdown
---
|
|
title: update
|
|
layout: command
|
|
version: 0.59.0
|
|
---
|
|
|
|
Update an existing column to have a new value.
|
|
|
|
## Signature
|
|
|
|
```> update (field) (replacement value)```
|
|
|
|
## Parameters
|
|
|
|
- `field`: the name of the column to update
|
|
- `replacement value`: the new value to give the cell(s)
|
|
|
|
## Examples
|
|
|
|
Update a column value
|
|
```shell
|
|
> echo {'name': 'nu', 'stars': 5} | update name 'Nushell'
|
|
```
|
|
|
|
Use in block form for more involved updating logic
|
|
```shell
|
|
> echo [[count fruit]; [1 'apple']] | update count {|f| $f.count + 1}
|
|
```
|
|
|
|
Use in block form for more involved updating logic
|
|
```shell
|
|
> echo [[project, authors]; ['nu', ['Andrés', 'JT', 'Yehuda']]] | update authors { get authors | str collect ',' }
|
|
```
|