I have a bunch of streaming output I want to demultiplex and it would be incredibly easy to do so if xsv partition could work with unbalanced CSV rows:
$ cmd | tee foo.csv # generates multiple multiplexed csv dumps
a.csv,1
b.csv,2,3
$ xsv partition --filename '{}' 1 out ./foo.csv
CSV error: record 1 (line: 2, byte: 4): found record with 3 fields, but the previous record has 2 fields
I have a bunch of streaming output I want to demultiplex and it would be incredibly easy to do so if
xsv partition
could work with unbalanced CSV rows: