I have four files:
one_file.txt
abc | def
two_file.txt
ghi | jkl
three_file.txt
m
Try:
awk 1 *file.txt > full_set.txt
This is less efficient than a bare cat but will add an extra \n if missing at the end of each file
cat
\n