update
Update an existing column to have a new value.
Signature
> update (field) (replacement value)
Parameters
field
: the name of the column to updatereplacement value
: the new value to give the cell(s)
Examples
Update a column value
> echo {'name': 'nu', 'stars': 5} | update name 'Nushell'
Use in block form for more involved updating logic
> echo [[count fruit]; [1 'apple']] | update count {|f| $f.count + 1}