Here is my sample file
cat test.txt
"IND WEB",
"Speed Web (Internal webserver)",
"Web Bill",
I tried the below two solutions to convert multiline to single line however the double quotes " are lost !!
cat listofapps.txt | xargs -s 8192
IND WEB, Speed Web (Internal webserver), Web Bill,
tr '\n' < listofapps.txt
IND WEB, Speed Web (Internal webserver), Web Bill,
Can you please suggest so that the double quotes remain ?