How do I include a shell variable in my script?

Jerry Hill malaclypse2 at gmail.com
Tue Jul 29 11:05:31 EDT 2008


On Tue, Jul 29, 2008 at 10:53 AM, laredotornado
<laredotornado at zipmail.com> wrote:
> Hi,
>
> I'm running a Python script on a Solaris 9 machine, invoking the
> Python script from ksh, if that matters.  There is an enviornment
> variable, $JAVA_HOME, that I would like to include in my script,
> replacing "/path/to/java/home'" with the value of $JAVA_HOME.
>
> java_home='/path/to/java/home'

import os
java_home = os.environ['JAVA_HOME']

-- 
Jerry



More information about the Python-list mailing list