bash reemplaza la nueva línea con espacio
Just use tr command as follow:
tr '\n' ' ' < file #Replaces all newlines matches with a space ' '
Armandres
Just use tr command as follow:
tr '\n' ' ' < file #Replaces all newlines matches with a space ' '