in reply to Opening multiple files

Hi,

If I understand correctly what you are wanting to do .. this is how I would do it.

Have fun !!

-Kiel R Stirling

#!/usr/bin/perl -w use strict; use IO::File; my $output = pop @ARGV; my @merge; for my $file (@ARGV) { my $input_fh = IO::File->new($file); die "failed to open $file\n" unless defined $input_fh; $merge[$.-1] .= $_ while (defined ($_ = <$input_fh>) and chomp); $input_fh->close; } my $output_fh = IO::File->new("> $output"); die "failed to open $output\n" unless defined $output_fh; $" = "\n"; print $output_fh "@merge"; $output_fh->close;

./merge.pl file1 file2 file3 output_file

Replies are listed 'Best First'.
Re^2: Opening multiple files
by mcasspj (Initiate) on Jan 30, 2012 at 16:45 UTC

    That's exactly what I wanted, just tweaked it and it's perfect!

    Many Thanks Paul