I have four files:
one_file.txt
abc | def
two_file.txt
ghi | jkl
three_file.txt
m
this works for me:
for file in $(ls *file.txt) ; do cat $file ; echo ; done > full_set.txt
I hope this will help you.