> But does someone have a proposal how to capture the STDERR 
> output of the batch script, too? Up to now, I only could 
> capture the STDOUT output via 
>    @Result=`command line`
> and I would like to capture both, ideally in the same array 
> to get the correct order...
> 
> Kind regards 
> Ekbert Mertens
> 

   To capture the STDERR, do

     @result = `command line 2>&1`;

   This will make the STDERR redirect to the STDOUT ...

~Mike L.

_______________________________________________
ActivePerl mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to