Help for this page

Select Code to Download


  1. or download this
    my @fnames = glob("foo*");
    foreach my $fname (@fnames) {
      # Do something then $fname...
    }
    
  2. or download this
    my @fnames = grep { /f(oo|u|)[0-9]{2}\.txt/ } glob("*");