Help for this page

Select Code to Download


  1. or download this
    <a class="txt" href="file.txt"> Text File </a>
    
  2. or download this
    my @links = $mech->find_all_links( text_contains => 'some description 
    +etc... ' );
    my @urls = map { $_->[0] } @links;
    
  3. or download this
    for my $foo (@urls)
    {
       my $filename = '/path/'.$foo;
       $mech->get($foo, ':content_file'=>$filename);
    }