Help for this page

Select Code to Download


  1. or download this
    use File::Find;
    use strict;
    ...
    
    # call &process_file recursively for each file in /some/directory
    find \&process_file, "/some/directory";
    
  2. or download this
    use HTML::LinkExtor;
    
    ...
      $p->parse_file($_);
      print $p->links;
    }