Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    use File::Find;
    
  2. or download this
    use strict;
    use warnings;
    
  3. or download this
     sub filefind
     {
    ...
      find(\&mysub, @dirs);
      return @files;
     }
    
  4. or download this
       if ($_ =~ $name)
       {
    ...
        push @files, $_;
     
       }