Help for this page

Select Code to Download


  1. or download this
    my @found = grep { -f && /\.pl/ } @array;
    
  2. or download this
    my @files = 
        grep { -f && /^parsed.*\.txt$/ }
        map  { "$dir/$_" } 
        readdir($dh);