in reply to Adding row from other file

Why don't you show some code/effort? Also you mix row and column. It appears you want to insert the column of file 2 before the columns of file 1. If you first write down the steps to take you're almost there. Like for example:

  1. open the two files for reading, open a new file for writing
    1. In a loop:
    2. read line from file 1
    3. read line from file 2
    4. combine lines
    5. write combined line to file 3
  2. close the files

And why do you want a one-liner for this? And it's Perl and not PERL (yes I am grumpy today)

Replies are listed 'Best First'.
Re^2: Adding row from other file
by ashnator (Sexton) on Nov 06, 2008 at 15:18 UTC
    Dear Harry I am sorry I made u angry. I am still learning and will be better next time.

      Learning is good. Everyone was a learner once and hopefully can remember what it was like. The way the question was posed, however, appeared to be asking for the code to be written for you.