Help for this page

Select Code to Download


  1. or download this
    while(<$filepath2>) { print }
    
    while(<$filepath>) { print }
    
  2. or download this
    foreach (@files2upload) {
       open F, $_ or die "Yack on file $_\n";
       print while(<F>);
       close F;
    }