My text file is like
0.1
0.2
0.3
0.4
0.5
As this file is generated dynamically, there can me n number of rows
I want to convert this to csv format.
like this :
0.1,0.2,0.3,0.4,0.5
|
|
|
I'd just use
But if you insist on
|
|||
|
|
|
Blender's answer works fine, but if you want to remove the last
Here's an example of how to do the same using sed:
|
||||
|
|
|
If you want to get a column from a text file (with several columns separated by comma) you can go for
extracting second, third and fifth columns. |
||||
|
|