Help for this page

Select Code to Download


  1. or download this
    use File::Find;
    find( sub { 
        /\.tex$/ && print "$File::Find::name\n" },
      'Docs');
    
  2. or download this
    find(\&wanted, 'Docs');
    sub wanted {
      /\.tex$/ && print "$File::Find::name\n";
    }