Help for this page

Select Code to Download


  1. or download this
    if (m/a\shref/i) { s/.html/.asp/i }
    
  2. or download this
    if ( grep(/a href.*\.html/,$line) ){
     (my $newline = $line ) =~ s/\.html/\.asp/g;            
     print OUTFILE $newline . "\n";
     continue;
    }