Help for this page

Select Code to Download


  1. or download this
    while ($line = <DATA>)
    {
    ...
              }
          }
    }
    
  2. or download this
    if ($line =~ /UNX/ || $line =~ /WNT/ || $line =~ /COMPONENT/)
    {
    ...
            print $FH "$line";
        }
    }
    
  3. or download this
    if ($line =~ /$target_os/)
             {
                 undef $flag;
                 next;
              }