I have two files: file 1:
a 1 2 3
b 1 2 3
c 1 2 3
d 1 2 3
file 2:
hola
l m n o p q
Now I want to merge them in one single file by ignoring the header of file 2 like this:
a 1 2 3 l m n o p q
b 1 2 3
c 1 2 3
d 1 2 3
Does anyone have an idea how to do this?