#!/usr/bin/perl
use warnings;
use strict;
use LWP::Simple;
my $site="http://www.mysite.com";
my $content=get $site;
print "$content \n";
Since in my webpage i use img src="images/" etc.. instead of a full path, I want my perl app to connect, get the $content and change all img src="images/" to...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.