Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    my $response = $browser->get("http://www.oreilly.com/");
    print $response->header("Server"), "\n";
    
  2. or download this
    !/usr/bin/perl -w
    use strict;
    ...
      return unless $resp->is_success;
      return $resp->content;
    }