PDA

View Full Version : join 2 files



davidtuti
February 28th, 2008, 12:28 PM
Hi,

In ksh how could I join 2 files:

for instanace:

file1:
------
me llamo
direccion
codigo postal

file2:
-----
david
calle pepe
28000

As result:

file3:
------
me llamo david
direccion calle pepe
codigo postal 28000

Thanks a lot and sorry for my english

ruy_lopez
February 28th, 2008, 12:35 PM
paste file1 file2 > file3

davidtuti
February 28th, 2008, 12:41 PM
Thanks a lot

:):):)