RE: catching STDERR
CTED] [mailto:[EMAIL PROTECTED] Sent: Monday, July 28, 2003 10:38 AM Cc: [EMAIL PROTECTED] Subject: catching STDERR For testing I have this script :: testeSTDERR.pl : warn "$_\n" foreach (1..10); :::
catching STDERR
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(", ", )); close FILE