Ubuntu – How to copy the content of a text file and paste it to another starting at a certain line

text processing

I need to copy the content of a text file and paste it to another text file. The first text file has 10 lines of data and I need them to be copied to the second text file starting at line number 5 (for example). So in the second text file those data should written from line 5 to line 14. How can this be done? Thanks in advance. Consider me as a rookie regarding Linux.

Best Answer

The easiest tool here might be sed. To insert b.txt into a.txt after the 5th line , you could write:

sed '5r b.txt' a.txt

sed reads the file specifiied as argument (a.txt) line by line. All lines get reproduced in the output just as they appeared in the input, unless they get altered by a command.

The 5 is an address (line number) at which the following command shall be executed. The command we use is r, which takes a file name as argument (here b.txt), reads it completely and inserts it into the output after the current line.

As it stands above, this sed command line will only print the output to the terminal, without writing to any files. You can either redirect it to a new file (not any of the input files!) using Bash's output redirection:

sed '5r b.txt' a.txt > c.txt

Or you can directly modify the outer input file a.txt by using sed's -i (for "in-place") switch. If you write it as -i.bak, it will make a backup copy of the original input file with the suffix .bak first:

sed -i '5r b.txt' a.txt

An example:

$ cat a.txt 
January
February
March
April
May
October
November
December

$ cat b.txt 
June
July
August
September

$ sed '5r b.txt' a.txt
January
February
March
April
May
June
July
August
September
October
November
December