Getting Documents with LWP
1 2 my $url ='http://freshair.npr.org/dayFA.cfm?todayDate=current'; 3 # Just an example: the URL for the most recent /Fresh Air/ show 4 5 use LWP::Simple; 6 my $content = get $url; 7 die "Couldn't get $url" unless defined $content;