Help for this page

Select Code to Download


  1. or download this
    my @files;
    
    foreach my $dir (@dirs) {
         @files = glob "*.eap";
         ...
    
  2. or download this
    for my $dir (@dirs) {
        my @files = glob "$dir/*.eap";
        ...
    
  3. or download this
    for (@files) { ...
    
  4. or download this
    for my $file (@files) { ...