split row
Split a string into multiple rows using a separator
Signature
> split row (separator) --number
Parameters
separator
: the character that denotes what separates rows--number {int}
: Split into maximum number of items
Examples
Split a string into rows of char
> echo 'abc' | split row ''
Split a string into rows by the specified separator
> echo 'a--b--c' | split row '--'