On Nov 14, 2007 5:18 PM, Beginner <[EMAIL PROTECTED]> wrote:
> On 13 Nov 2007 at 19:11, Marco wrote:
>
> my $result = system($inact);
> print $result;
>

my $result = `system commands`;
print $result;


system() returns nothing but the executed status of  the command itself.

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/


Reply via email to