Help for this page

Select Code to Download


  1. or download this
    /dir1/file1
    /dir two/file2
    
  2. or download this
    foreach my $dir (glob("*")) {
      foreach  my $file (glob("$dir/*")) {
          print "[$file]\n";
      }
    }
    
  3. or download this
    
    use File::Glob qw(bsd_glob);
    ...
          print "file [$file]\n";
      }
    }