Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

I want to join the each line of two files in order. ie.,1st line of the file1 will be joined to the first line of the file2 and vice versa, the ouput has to be moved to another file.

AIX Commands

I want to join the each line of two files in order. ie.,1st line of the file1 will be joined to the first line of the file2 and vice versa, the ouput has to be moved to another file.

by  nsivas  Posted    (Edited  )
#!/bin/ksh

cat /tmp/a | sed -n '1p' >> d
cat /tmp/b | sed -n '1p' >> d

where a, b and d are files

Hope this helps
Tony
Register to rate this FAQ  : BAD 1 2 3 4 5 6 7 8 9 10 GOOD
Please Note: 1 is Bad, 10 is Good :-)

Part and Inventory Search

Back
Top