Skip to content

Instantly share code, notes, and snippets.

@hiragram
Created March 13, 2013 14:14
Show Gist options
  • Select an option

  • Save hiragram/5152509 to your computer and use it in GitHub Desktop.

Select an option

Save hiragram/5152509 to your computer and use it in GitHub Desktop.
PerlでLWP::UserAgentをつかってGETするときのやつ
#!/usr/bin/perl
use strict;
use warnings;
use LWP::UserAgent;
my $ua = LWP::UserAgent->new;
my $req = HTTP::Request->new(GET=>'もってきたいURL');
my $res = $ua->request($req);
print $res->content;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment