标签: python shell subprocess
我在python脚本中调用shell脚本:
Process=subprocess.Popen('shell_script.sh %s %s' % (str(var1),str(var2),),shell=True)
shell脚本中的进程完成(它正在使用此脚本中的' java'命令执行java类)并生成一些输出文件夹
然而,控件永远不会回到父python脚本。我在这里做错了什么?