Help for this page

Select Code to Download


  1. or download this
     
    #!/usr/bin/perl
    use strict;
    ...
    my $mech = WWW::Mechanize->new( autocheck => 1 );
    $mech->get( "http://hiphople.com/kboard" );
    print $mech->content();
    
  2. or download this
    #!/usr/bin/perl
    use strict;
    ...
    my $responce = $mech->get( "http://hiphople.com/kboard" );
    my $output = "file1.txt";
    gunzip $responce => $output;