I have this script where the content that it return is human-readable on my machine. But when I run the same script on another machine, it returns garbled message.
Both machines are Redhat 5.
#!/usr/bin/perl
use strict;
use WWW::Mechanize;
my $m = WWW::Mechanize->new;
$m->get( 'http://www.google.com' );
print $m->content;