in reply to Re: printing contents of small files into one larger one
in thread printing contents of small files into one larger one

What's wrong with slurping each file into an array? As in
my @line = <FH>;
(where FH is the filehandle of the currently-opened file). Am I missing something?

UPDATE:
Aside from using a different approach to read the file into an array, the final output still needs to have the data transposed.
_______
Code is untested unless explicitly stated
mlh2003