#!/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...