Re: [Tutor] trouble setting the environment

2005-04-21 Thread Alan Gauld
> Is this possible? I vaguely remember something about the system env and the > interpreters env being separate after the interpreter starts up. When you execute another process it gets its own environment. When it dies its environment dies with it. You can get round this in your case by forking t

RE: [Tutor] trouble setting the environment

2005-04-21 Thread Ertl, John
t manually). Thanks, John Ertl -Original Message- From: Kent Johnson [mailto:[EMAIL PROTECTED] Sent: Thursday, April 21, 2005 13:49 Cc: tutor@python.org Subject: Re: [Tutor] trouble setting the environment Ertl, John wrote: > Kent, > > Good idea except that the environment that need

Re: [Tutor] trouble setting the environment

2005-04-21 Thread Kent Johnson
o with it :-) Kent -Original Message- From: Kent Johnson [mailto:[EMAIL PROTECTED] Sent: Thursday, April 21, 2005 13:20 Cc: tutor@python.org Subject: Re: [Tutor] trouble setting the environment Ertl, John wrote: All, I have program and init I want to "source" a .ksh file to

RE: [Tutor] trouble setting the environment

2005-04-21 Thread Ertl, John
, April 21, 2005 13:20 Cc: tutor@python.org Subject: Re: [Tutor] trouble setting the environment Ertl, John wrote: > All, > > I have program and init I want to "source" a .ksh file to set some > environment variables and then use those variables in my program. > > Is this

Re: [Tutor] trouble setting the environment

2005-04-21 Thread Kent Johnson
Ertl, John wrote: All, I have program and init I want to "source" a .ksh file to set some environment variables and then use those variables in my program. Is this possible? I vaguely remember something about the system env and the interpreters env being separate after the interpreter starts up. Wh

[Tutor] trouble setting the environment

2005-04-21 Thread Ertl, John
All, I have program and init I want to "source" a .ksh file to set some environment variables and then use those variables in my program. Is this possible? I vaguely remember something about the system env and the interpreters env being separate after the interpreter starts up. For instance if I