nushell/docs/commands/format.md
Justin Ma c0a1d18e3d
update #4455, regenerate commands' docs and update make_docs script (#4586)
* feat: update #4455, regenerate commands' docs

* chore: update make_docs script
2022-02-21 11:26:00 -06:00

431 B

title layout version
format command 0.59.0

Format columns into a string using a simple pattern.

Signature

> format (pattern)

Parameters

  • pattern: the pattern to output. e.g.) "{foo}: {bar}"

Examples

Print filenames with their sizes

> ls | format '{name}: {size}'

Print elements from some columns of a table

> echo [[col1, col2]; [v1, v2] [v3, v4]] | format '{col2}'