This piece of code download the two images you need, at least i hope ;)

#!/usr/bin/perl use strict; use warnings; use WWW::Mechanize; $|++; my $site = 'http://www.ebi.ac.uk'; my $start = '/thornton-srv/databases/cgi-bin/pdbsum/GetPage.pl?pdbcode=2j6p&templa +te=ligands.html&l=1.1'; my $img_string = 'ligplot\d{2}_\d{2}'; my $m = WWW::Mechanize->new( autocheck => 1 ); $m->get( $site . $start ); my @links = @{ $m->find_all_links( tag => 'a', text_regex => qr/^EPE\s/ ) }; for my $link (@links) { print $link->text, "\n", $link->url, "\n"; $m->follow_link( tag => 'a', text_regex => qr/^EPE\s/ ) or die "can't follow link"; my $img = $m->find_link( url_regex => qr/$img_string/ ); $img->url =~ /($img_string)/; next unless defined $1; print " Fetching $1...", $m->mirror( $img->url_abs, $1 )->message, "\n"; }


hth,
PooLpi

'Ebry haffa hoe hab im tik a bush'. Jamaican proverb

In reply to Re: to repeat action for a cicle of files by poolpi
in thread to repeat action for a cicle of files by paola82

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.