I am using cat *.txt to merge multiple txt files into one, but I need each file to be on a separate line.
What is the best way to merge files with each
If you have a paste that supports it,
paste
paste --delimiter=\\n --serial *.txt
does a really great job