For testing I have this script
:::::: testeSTDERR.pl :::::::::::::::::::::::::::::
warn "$_\n" foreach (1..10);
:::::::::::::::::::::::::::::::::::::::::::::::::::
:::::: showSTDERR.pl ::::::::::::::::::::::::::::::
use strict;
open FILE, "perl testeSTDERR.pl |2 ";
print(join(", ", <FILE>));
close FILE;
:::::::::::::::::::::::::::::::::::::::::::::::::::
So I'm trying to get the STDERR. How do I do this?
Thanks
Marcos
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]