#!/usr/bin/perl use LWP::Simple; my $document = get("http://http://www.perlmonks.org/"); print "Content-type: text/html\n\n"; print $document; exit;