# See: http://www.perl.com/pub/a/2002/08/20/perlandlwp.html # import the LWP::Simple module use LWP::Simple; # define the webpage to access: $url = "http://jones.ling.indiana.edu/~mdickinson/"; # get the webpage content $content = get $url; die "Couldn't get $url" unless defined $content; print $content;