The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com




Thread: merge files
View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #3 (permalink)  
Old 12-24-2007
thanusha thanusha is offline
Registered User
  
 

Join Date: Dec 2007
Posts: 2
Quote:
Originally Posted by koti_rama View Post
Hi,
i have the files f1 and f2 like:
files f1:
c1 a1
c2 a2
c3 a3
file f2:
c1 b1
c2 b2
c3 b3

i want merge the f1 and f2 file to f3 file like:

c1 a1 b1
c2 a2 b3
c3 a3 b3........
....
.
.
please help me onthis.....
Hi
use paste command for this senario,I think it will be help to u.
Paste F1 F2 > F3