in reply to Re^2: Reading Multiple Input Files
in thread Reading Multiple Input Files

Ouch, C-style for loops in Perl.

A more Perlish approach is

while ( my ($index, $file) = each @filenames) {... }

No need to calculate the number of files, you don't need to use indexes to access the filename and you still have the $index variable to use in composing the output filenames.

CountZero

A program should be light and agile, its subroutines connected like a string of pearls. The spirit and intent of the program should be retained throughout. There should be neither too little or too much, neither needless loops nor useless variables, neither lack of structure nor overwhelming rigidity." - The Tao of Programming, 4.1 - Geoffrey James

Replies are listed 'Best First'.
Re^4: Reading Multiple Input Files
by Anonymous Monk on May 28, 2011 at 08:55 UTC
      Oops, sorry indeed. I forgot to mention I run everything under "use Modern::Perl;";

      CountZero

      A program should be light and agile, its subroutines connected like a string of pearls. The spirit and intent of the program should be retained throughout. There should be neither too little or too much, neither needless loops nor useless variables, neither lack of structure nor overwhelming rigidity." - The Tao of Programming, 4.1 - Geoffrey James