Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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
share|improve this question

4 Answers

I'd just use tr:

cat file.txt | tr "\n" ","

But if you insist on awk, here you go:

awk '{printf "%s,",$0};' file.txt
share|improve this answer

Blender's answer works fine, but if you want to remove the last , and of course, use only awk, here is a way to do it:

awk '{printf "%s,",$0};' file.txt | awk '{print substr($0, 0, length($0)-1)}'

Here's an example of how to do the same using sed:

sed ':q;N;s/\n/,/;t q' file.txt
share|improve this answer

echo cat file | sed -e s/" "/","/g

share|improve this answer

If you want to get a column from a text file (with several columns separated by comma) you can go for

awk -F"," '{print $2,$3,$5.}' yourfile.csv

extracting second, third and fifth columns.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.