1833053 Members
2451 Online
110049 Solutions
New Discussion

append two lines

 
SOLVED
Go to solution
rene martinez
Occasional Advisor

append two lines

Hello All,

I am having trouble with the following: I need to take filea and append it to fileb side by side. ie:

filea fileb
aaa bbb
aaa bbb

I need to build a file (filec) with columns from filea and fileb. I have been trying to use sed to do this. Any ideas?
2 REPLIES 2
Sridhar Bhaskarla
Honored Contributor
Solution

Re: append two lines

Hi,

Try 'paste' command. Man 'paste'.

-Sri
You may be disappointed if you fail, but you are doomed if you don't try
curt larson_1
Honored Contributor

Re: append two lines

as Sridhar suggests:

paste file1 file2 > file3