If u simply want to translate an execution that u've run successfully on
the command line, into your perl script, u can do a simple:
my $result=system("command_as-is");
return $result
the output of running that command on the command line is ultimately the
return value and u can use that for a l
From: perl-unix-users-boun...@listserv.activestate.com
[mailto:perl-unix-users-boun...@listserv.activestate.com] On Behalf Of Prakash
Dutta
Sent: 10 April 2013 17:19
To: 'Nac Temha'; perl-unix-users@listserv.ActiveState.com
Subject: [Perl-unix-users] How to access url and get result back using pe