On Wed, 7 Jun 2006 12:05:12 -0700, you wrote:

>I think the initial problem is that you are not capturing error
>messages, which are usually sent to stderr, you are only capturing
>stdout with your "> c:\output.txt". If you make that "2>&1 >
>c:\output.txt", you should capture both stdout and stderr in your file,
>which should at least allow you to see the error messages.

I think you meant ">c:\output.txt 2>&1"; redirections are processed in
strict left-to-right order.
-- 
Eric Amick
Columbia, MD
_______________________________________________
ActivePerl mailing list
[email protected]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to