Help for this page

Select Code to Download


  1. or download this
    use File::Find;
    # Module list
    ...
        print "$File::Find::name\t" if /\.pm$/;
      }, $dir;
    }
    
  2. or download this
    use File::Find;
    find sub {
      print "$File::Find::name\t" if /\.pm$/;
    }, @INC;