Help for this page

Select Code to Download


  1. or download this
        my $it1 = $fp->next_parseable_file;
        while (my $file1 = $it1->next) {
    ...
            print $fp->short_name($file2) . "\n";
          }
        }
    
  2. or download this
        while ($fp->next_parseable_file) {
          print $fp->short_name . "\n";
    ...
            print $fp->short_name . "\n";
          }
        }