Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
Hi Monks, I am getting junks while I try to fetch the below page. Pls can you tell me what could be the problem?
#!/usr/bin/perl -w use strict; use WWW::Mechanize; my $mech = WWW::Mechanize->new(); $mech->get('https://thebigword-careers.irecruittotal.com/'); print $mech->content(); #my $filename = 'OUTPUT.html'; #$mech->save_content( $filename ); exit;
Is this a www::mech issue?
Thanks Monks
|
|---|