Help for this page

Select Code to Download


  1. or download this
    foreach (@trt_files) # Each time round the loop, $_
                         # is set to an alias to one of the
    ...
                                  # or @trt_files).
        print "$_\n";    # Prints the (unchanged) value of $_
    }
    
  2. or download this
    foreach (@trt_files)
    {
        s/date/$date/;
        print "$_\n";
    }