sed - How to place all the delimited records in one column in unix -


i have 1 file abc.txt contains :

abc,byc ccf gyh 

i want place records (which comma separated) in 1 line.

abc byc ccf gyh 

please help

with tr:

tr ',' '\n' < abc.txt 

this replaces each comma newline.


Comments

Popular posts from this blog

Android layout hidden on keyboard show -

google app engine - 403 Forbidden POST - Flask WTForms -

c - Why would PK11_GenerateRandom() return an error -8023? -