#!/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;