Re: [Perl-unix-users] How to access url and get result back using perl

2013-04-11 Thread Ombongi Moraa Fe
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

Re: [Perl-unix-users] How to access url and get result back using perl

2013-04-10 Thread Brian Raven
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