Help for this page

Select Code to Download


  1. or download this
    use File::Find;
    
    ...
    sub printer {
        print "I have found $File::Find::name\n" if /\.pl$/;
    }
    
  2. or download this
    use File::Find
    
    find(
        sub {print "I have found $File::Find::name\n" if /\.pl$/;},
        "/path/to/dir");