You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I need to be able to quote all headers and values in the output in order to maintain compatibility with another system. AFAIK, csvtk doesn't currently support his.
Reproduction
Given input file x.csv:
"A A","B","C","D"
"1"," 2","3 ","4"
Given command:
csvtk sort x.csv
csvtk outputs:
A A,B,C,D
1," 2",3 ,4
The desired output should be the same as the input file.
The Problem
I need to be able to quote all headers and values in the output in order to maintain compatibility with another system. AFAIK, csvtk doesn't currently support his.
Reproduction
Given input file
x.csv
:Given command:
csvtk outputs:
The desired output should be the same as the input file.
Workaround
I'm currently using miller as a workaround:
The text was updated successfully, but these errors were encountered: