Help for this page

Select Code to Download


  1. or download this
    ## note the \Q before $comm
    if(($line eq $comm) || ($line =~ /\Q$comm/)){
      print"Line $i: $comm";
    }
    
  2. or download this
    if(($line eq $comm) || (index($line, $comm) > -1)){
      print"Line $i: $comm";
    }