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
just use awk
awk 'FNR==1{print ""}1' *.txt