Help for this page

Select Code to Download


  1. or download this
    use File::Find;
    find(\&wanted, shift(@ARGV));
    ...
        push(@dirlist,$File::Find::name);
        return(@dirlist);
    }
    
  2. or download this
    use strict;
    use File::Find;
    ...
    sub dostuff {
        print "$_\n"
    }