Help for this page

Select Code to Download


  1. or download this
    while ( my $html_file = $rule->match ) {
       # Change file in-place.
    ...
          print;
       }
    }
    
  2. or download this
    while ( my $html_file = $rule->match ) {
       rename($html_file, "$html_file.bak")    or die;
    ...
          print $fh_in $_;
       }
    }