can jython source UNIX shell
I am new to Jython and trying to pickup the bits and pieces.
I need to get few environment variables into a JVM process. We are able to achieve this in UNIX using a Korn Shell script with export variables in it and sourcing the file.
If I have to get the same set of environment variables in JYTHON can I source the same UNIX Korn Shell script by any way?
So far I have seen only 揙S.putenv(var,value)?being the closest. The requirement is that the export variables are not known ahead of the time. Only information is that the client comes up with their own environment settings (defined in unix shell script) and one has to source it to get all the environment variables into the Parent (JYTHON/another UNIX shell) process.
Any suggestions are greatly appreciated.

