RE: PERL HANG on WINDOWS AND WAITING FOR TO PRESS ENTER

2003-06-30 Thread Madhu Reddy
- > From: Madhu Reddy [mailto:[EMAIL PROTECTED] > Sent: Monday, June 30, 2003 9:24 AM > To: Tim Johnson; [EMAIL PROTECTED] > Subject: RE: PERL HANG on WINDOWS AND WAITING FOR TO > PRESS ENTER > > > Hi, > I am already re-directing erros messages to file... > and i am s

RE: PERL HANG on WINDOWS AND WAITING FOR TO PRESS ENTER

2003-06-30 Thread Tim Johnson
ginal Message- From: Madhu Reddy [mailto:[EMAIL PROTECTED] Sent: Monday, June 30, 2003 9:24 AM To: Tim Johnson; [EMAIL PROTECTED] Subject: RE: PERL HANG on WINDOWS AND WAITING FOR TO PRESS ENTER Hi, I am already re-directing erros messages to file... and i am sure that there were no erros. ev

RE: PERL HANG on WINDOWS AND WAITING FOR TO PRESS ENTER

2003-06-30 Thread Madhu Reddy
Hi, I am already re-directing erros messages to file... and i am sure that there were no erros. even if there are some erros..it should come out from system command and should go to next step right ? following is my system command system `bteq <$bteq_script 2>$bteq_err >$bteq_out`; thanks -mad

RE: PERL HANG on WINDOWS AND WAITING FOR TO PRESS ENTER

2003-06-30 Thread Tim Johnson
The problem is probably in your system() command. I would recommend redirecting STDERR to a file to see what messages you are getting. Try putting: open(STDERR,">error.log") || die "$!\n"; at the beginning of the section with the system commands. If you are not on a Win32 system, then I th