Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

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;
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS