Help for this page

Select Code to Download


  1. or download this
    foreach my $file (@ARGV)
    {
    ...
      }
      print "whatever you wanted to use as a separator $file\n";
    }
    
  2. or download this
    for my $file (@ARGV) {
        open (my $fh, "<", $file) || die "could not open '$file': $!";
        print while <$fh>;
        print "whatever you wanted to use as a separator $file\n";
    }