Help for this page

Select Code to Download


  1. or download this
    if (grep /.*P.*\.0912\.ama\.gz/, @sourcefiles) { 
        # ... code ...
    }
    
  2. or download this
    my @matched = grep /.*P.*\.0912\.ama\.gz/, @sourcefiles; 
    if (@matched) { 
        # ... code ...
    }