Help for this page

Select Code to Download


  1. or download this
    my @files = qw(file1 file2 file3);
    my @contents;
    ...
      local $/;
      push @contents, <FILE>;
    }
    
  2. or download this
    my @files = qw(file1 file2 file3);
    my @contents;
    ...
    
      push @contents, [<FILE>];
    }