Skip to content

Instantly share code, notes, and snippets.

@xatier
Created November 14, 2013 05:04
Show Gist options
  • Save xatier/7461689 to your computer and use it in GitHub Desktop.
Save xatier/7461689 to your computer and use it in GitHub Desktop.
#!/usr/bin/env perl
use 5.014;
use WWW::Mechanize;
# feed me a url like this!
my $url = "http://eden.komica.org/00/src/";
my $mech = WWW::Mechanize->new();
$mech->get($url);
my $ref = $mech->find_all_links();
for (@$ref) {
say "<img src=\"". $_->url_abs() . "\"><br/>";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment