Re: Freeze and Thaw

2002-03-21 Thread Greg Wardawy
On Thursday 21 March 2002 16:59, you wrote: > >You're right, I was trying to figure out what's wrong and I left exec > > `thaw.pl`; > > >Here is the siuation: > >the following script reads the log file and starts the other scripts. > > Most of them need the same data from the database. > > >I'm t

Re: Freeze and Thaw

2002-03-21 Thread Tim . Moose
>You're right, I was trying to figure out what's wrong and I left exec `thaw.pl`; >Here is the siuation: >the following script reads the log file and starts the other scripts. Most of them need the same data from the database. >I'm trying to avoid running database queries again and again by stor

Re: Freeze and Thaw

2002-03-21 Thread Greg Wardawy
>>> <[EMAIL PROTECTED]> 03/21/02 03:59PM >>> $srl_num_item is undefined in the child process, hence the error. What are you trying to do, exactly? The line exec `thaw.pl`; is very odd---you are exec'ing the output of backticks operation, `thaw.pl` (which executes thaw.pl in a new proc

Re: Freeze and Thaw

2002-03-21 Thread Tim . Moose
$srl_num_item is undefined in the child process, hence the error. What are you trying to do, exactly? The line exec `thaw.pl`; is very odd---you are exec'ing the output of backticks operation, `thaw.pl` (which executes thaw.pl in a new process). Tim ___