On this page
to tsv
for formats
Convert table into .tsv text.
Signature
> to tsv {flags}
Flags
--noheaders, -n
: do not output the column names as the first row
Input/output types:
input | output |
---|---|
record | string |
table | string |
Examples
Outputs an TSV string representing the contents of this table
> [[foobar]; [12]] |to tsv
foobar
12
Outputs an TSV string representing the contents of this record
> {a:1b:2} |to tsv
ab
12
Copyright © 2019–2023 The Nushell Project DevelopersLicensed under the MIT License.
https://www.nushell.sh/commands/docs/to_tsv.html