Help for this page

Select Code to Download


  1. or download this
    my $match = 'status|power';
    foreach (@data) {
       next if /NCQ/ or /Supported/;
       print $_ if /$match/i; 
    }
    
  2. or download this
    foreach (@data) {
       print unless /NCQ/ or /Supported/ or /^$/;
    }