Help for this page

Select Code to Download


  1. or download this
    use File::Find; 
    use strict;
    ...
    find({ wanted =>sub{print "Found a match: $_\n" if (/$rex/);} , 
       no_chdir => 1 }, $search_root);