RE: Pass variables from parent to child script

2002-04-30 Thread Bob Showalter
> -Original Message- > From: Rob [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, April 30, 2002 1:47 PM > To: [EMAIL PROTECTED] > Subject: Pass variables from parent to child script > > > When executing a child script from a parent script using the > system command, > is there a way to allo

RE: Pass variables from parent to child script

2002-04-30 Thread Nikola Janceski
better to spawn off things as such than to try to pass every single arguement to the command line. > -Original Message- > From: Hunt, Robert W. (Orion Consulting) > [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, April 30, 2002 3:10 PM > To: '[EMAIL PROTECTED]' > Subj

RE: Pass variables from parent to child script

2002-04-30 Thread Nikola Janceski
what does your system command look like? Are you running this on UNIX? if so, why not use fork? you might be interested in reading the: perldoc perlipc There is usually a chapter in every perl book on IPC. Some are better than others. what kind of varibles do you want to pass? (how about

Re: Pass variables from parent to child script

2002-04-30 Thread Frank Wiles
On Tue, 30 Apr 2002 12:47:11 -0500 "Rob" <[EMAIL PROTECTED]> wrote: > When executing a child script from a parent script using the system command, > is there a way to allow the child script to recognize the variables declared > by the parent script? > > In other words, can you replicate the expo