annotate get-webpage.pl @ 7:913acb5a675b

repaired old repl script using changes from dylan
author Robert McIntyre <rlm@mit.edu>
date Thu, 01 Mar 2012 06:28:39 -0700
parents c0a7582262fd
children
rev   line source
rlm@4 1 #!/usr/bin/perl
rlm@4 2
rlm@4 3
rlm@4 4 print $ARGV[0];
rlm@4 5 use WWW::Mechanize::Firefox;
rlm@4 6 my $mech = WWW::Mechanize::Firefox->new(autoclose => 0);
rlm@4 7 $mech->get($ARGV[0]);