#! /usr/bin/perl use warnings; use strict; use 5.010; use WWW::Mechanize; my $url = 'https://www.huntington.com/'; my $mech = WWW::Mechanize->new; $mech->get($url); my $c = $mech->content; say "c is $c"; my $url2 = 'https://berniesanders.com/issues/racial-justice/'; my $mech2 = WWW::Mechanize->new; $mech2->get($url2); my $c2 = $mech2->content; say "c2 is $c2";