- or download this
#!/usr/bin/perl
# turn on perl's safety features
...
system('galeon', $url);
exit(0);
- or download this
C:\cygwin64\home\Fred\pages2\hunt>perl cpan4.pl WWW::Mechanize
module name is WWW::Mechanize
...
system( 'C:\Program Files (x86)\Google\Chrome\Application\chrome.exe',
+ $url );
exit(0);
- or download this
C:\cygwin64\home\Fred\pages2\hunt>perl cpan1.pl WWW::Mechanize
WWW::Mechanize passed as text_regex is not a regex at cpan1.pl line 24
+.
...
url is http://st.pimg.net/tucs/style.css?3
C:\cygwin64\home\Fred\pages2\hunt>
- or download this
#! /usr/bin/perl
use warnings;
use strict;
...
system( 'C:\Program Files (x86)\Google\Chrome\Application\chrome.exe',
+ $url );
exit(0);