I was tring to call the source command in unix from a python script. I was trying to get it done with subprocess.Popen passing the os environment to it.
Below is my function for doing the task of executing a command:
def run_command(command, tst_env):
print tst_env
try:
p = subprocess.Popen(command, env=tst_env, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True)
stout, er = p.communicate()
print stout, er
ret = p.wait()
except Exception, e:
print "Exception: ", e
else :
if ret:
print command, "failed", ret
return
else:
print command, "succeeded", ret
return p
The tst_env is an object of os.environ type.
run_command(source script.sh, os.environ) says it is successful.
But I am not able to access the functions in the script.
The case is like this:
script.sh follows:
function task_test() {
echo "Test function called"
}
source script.sh
task_test will call the function in the shell script.
But I am not able to call the functions in the shell script from python.
Hope I am clear.
p.wait()-p.communicate()does not return until the subprocess exits. – Dave Dec 9 '11 at 11:51