I have data in a file in this format as given below
"253539","","Company1 Name
","0","1"
"255229","","Ramu ","0","1"
"253548","","Mater Name/Id
","0","1"
"255229","","Ram Lakh","0","1"
"253619","","CHild Name/Ids
","0","1"
Every line has \n appended to it.
How can I replace \n", to ", in shell script to get the output as
"253539","","Company1 Name/Id ","0","1"
"255229","","Ramu ","0","1"
"253548","","Mater Name/Id ","0","1"
"255229","","Ram Lakh","0","1"
"253619","","CHild Name/Id ","0","1"
Need to automate a process so have to write in shell script.
Please help.