I know about cut command which can cut a column(s) from a file, but what can I use to split a file into multiple files so that each file would be named as first line in that column and there would be same number of produced files as there was columns in original file
Example (edit)
Columns are separated by TAB and can be of different length. I would like first file to actually have names of rows.
Probe File1.txt File2.txt File3.txt
"1007_s_at" 7.84390328616472 7.60792223630275 7.77487266222512
...
Also thing is that this original file is extremely huge, so I would want some solution that could split this in one run. That is not calling cut repeatedly
Can do it with one line of awk:
Edited to include Tab separator courtesy of Glenn Jackman
Addition
Removing double quotes from the fields:
Additional Addition
Removing double quotes from fields, only at the start or end of the field: