My questions is the same as
Command line CSV viewer?
and the column -s, -t
command answer is almost perfect - except it doesn't seem to handle empty csv fields as I'd expect. eg given input
col1,,col3
,col2,
produces:
col1 col3
col2
but I would like:
col1 col3
col2
Is there an option to achieve the above with column command or an alternative way to achieve this? (cygwin environment)