Is that possible to split and align rows of CSV like below?
ID Value
========
1 10
--------
2 20
--------
3 14
--------
Please consider the above as a csv, no need to care about 2nd column (Value). I want to split the 1st Column (ID) and save the result/store it another file.
The output should like: 1,2,3