BurntSushi / xsv

A fast CSV command line toolkit written in Rust.
The Unlicense
10.23k stars 317 forks source link

support flexible format csv #334

Open dlintw opened 7 months ago

dlintw commented 7 months ago

maybe support a new command to convert such csv file to normalize, add default value, add header etc. example: with header data

name,year,price
grass,1902
car,1900,100
toy,1901,3

without header data, first row fields count lesser than following rows. `` grass,1902 car,1900,100 toy,1901,3