liquidaty / zsv

zsv+lib: tabular data swiss-army knife CLI + world's fastest (simd) CSV parser
MIT License
202 stars 12 forks source link

compare: different column headers should be output once as missing #169

Open liquidaty opened 5 months ago

liquidaty commented 5 months ago

e.g if input1 contains A,B,C and input2 contains A,C, and contents are otherwise equal, then the output should contain a single line:

,B,,MISSING

instead of:

key,B,x,
key,B,x,
...