Article 5G2P6 Combining 14 Text Files with Line Breaks Between Each File Content

Combining 14 Text Files with Line Breaks Between Each File Content

by
sroussie
from LinuxQuestions.org on (#5G2P6)
I am very new to Linux, only started using it this week. I have 14 text files that I need to be combined into one text file with line breaks after each file. Each text file contains numerous lines of text. I have tried, $ paste -d=\\n --serial *.txt which combined all the files but with no line brakes after each file. I have also tried $ find *.txt | xargs -I{} sh -c "cat {}; echo '' " > final.txt, $ paste -d list \n --serial *.txt, and $ awk "FNR==1 && NR>1 {printf("\n") } 1' *.txt > "${outfile}". I also tried cat file1 file2 file3 > newfile but it only combined three files and no line breaks.

An example of what I am trying to achieve is below.

For instance:

File1.txt contains XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File2.txt contains AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

File 3 contains CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC

The output I am receiving looks like this:

XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC

I need this: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC

Thanks in advancelatest?d=yIl2AUoC8zA latest?i=t-fK1NYdj3s:9P49BjcuFqw:F7zBnMy latest?i=t-fK1NYdj3s:9P49BjcuFqw:V_sGLiP latest?d=qj6IDK7rITs latest?i=t-fK1NYdj3s:9P49BjcuFqw:gIN9vFwt-fK1NYdj3s
External Content
Source RSS or Atom Feed
Feed Location https://feeds.feedburner.com/linuxquestions/latest
Feed Title LinuxQuestions.org
Feed Link https://www.linuxquestions.org/questions/
Reply 0 comments