I have a CSV with ~50 comma-separated values in one column that I want to separate into separate columns. The header is line 1. This should be really simple, and I've tried a lot surrounding awk and mlr but haven't been able to adapt anything I've seen in order to separate a single column into many columns using a comma as a delimiter.
My process:
I used
mlrto combine hundreds of CSVs into one CSV:mlr --icsv cat *.csv > filename.txt mlr --ocsv unsparsify filename.txt > filename.csvNow I have a CSV with one column; in that column are ~50 comma-separated values that I want to explode into many columns.