in reply to Re: Have a multiple file in directory and want to manipulate in each files in incremental order. All the file have same value.
in thread Have a multiple file in directory and want to manipulate in each files in incremental order. All the file have same value.

Or, to put that into "plain English" perl:
for my $fileName ( @files ) { next unless -f $fileName; ... }
  • Comment on Re^2: Have a multiple file in directory and want to manipulate in each files in incremental order. All the file have same value.
  • Download Code