1
0
mirror of https://github.com/nushell/nushell.git synced 2025-05-28 22:07:40 +02:00
JT 8c0a2d3c15
Auto-generate markdown command docs ()
* Finish updating

* a couple improvements

* Update renames

* cleanup examples
2022-02-13 21:22:51 -05:00

378 B

title, layout, version
title layout version
headers command 0.59.0

Use the first row of the table as column names.

Signature

> headers

Examples

Returns headers from table

> "a b c|1 2 3" | split row "|" | split column " " | headers

Don't panic on rows with different headers

> "a b c|1 2 3|1 2 3 4" | split row "|" | split column " " | headers