Help for this page

Select Code to Download


  1. or download this
    for my $file ( @array ) {
      open( FILE, $file ) or die "Can't open '$file': $!\n";
      ## Do something with the contents of $file
      close( FILE );
    }