mirror of
https://github.com/danbulant/nushell
synced 2026-05-20 21:08:34 +00:00
500 B
500 B
split row
splits contents over multiple rows via the separator.
Syntax: split row <separator>
Parameters
<separator>the character that denotes what separates rows
Examples
We can build a table from a file that looks like this
> open table.txt
4, 0, 2, 0, 7, 8
using the split row command.
open table.txt | split row ", "
───┬───
# │
───┼───
0 │ 4
1 │ 0
2 │ 2
3 │ 0
4 │ 7
5 │ 8
───┴───