Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Change File 2

Status
Not open for further replies.

Yarka

Technical User
Jan 14, 2007
192
ES
Hi,
I have a large file as:
a
b
c
d
e
...

I need to have a output as:
a,b,c,d,...

How can I do this?
Thanks.

 
A starting point:
tr '\012' ',' < /path/to/largefile > output

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
tr should be much faster than awk, did you try it ?
 
Hi

PHV said:
tr should be much faster than awk, did you try it ?
No, I did not tried it, because I am sure a script interpreter can not race against a dedicated tool. This is why I mentioned the [tt]awk[/tt] solution only here in the [tt]awk[/tt] forum, and not in this thread's duplicate too.

Feherke.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top