Help for this page

Select Code to Download


  1. or download this
    use File::Find;
    $|++;
    find sub { print "$File::Find::name\n" if $_ =~ /\.pm$/ }, @INC;
    
  2. or download this
    $|++;
    while (@INC) {
    ...
        }
        closedir MODDIR;
    }