Help for this page

Select Code to Download


  1. or download this
    while (<>) {
       if ($_ =~ /\^E/gi || $_ =~ /gmake.*/gi) {
          push (@errors, $_)
       }
    }
    
  2. or download this
    while (<>) {
       if (/\^E|gmake/i) {
          push(@errors, $_);
       }
    }
    
  3. or download this
    while (<>) {
       if (/^(?:\^E|gmake)\s*:/) {
          push(@errors, $_);
       }
    }