bash remplacer la nouvelle ligne par l'espace

Just use tr command as follow:
tr '\n' ' ' < file	#Replaces all newlines matches with a space ' '
Armandres