问题描述
我有一个脚本,我用 popen 一个 shell 命令启动.问题是脚本不会等到 popen 命令完成并立即继续执行.
I have a script where I launch with popen a shell command. The problem is that the script doesn't wait until that popen command is finished and go continues right away.
om_points = os.popen(command, "w")
.....
如何告诉我的 Python 脚本等到 shell 命令完成?
How can I tell to my Python script to wait until the shell command has finished?
推荐答案
根据您希望如何处理脚本,您有两种选择.如果您希望命令在执行时阻止而不做任何事情,您可以使用 subprocess.call.
Depending on how you want to work your script you have two options. If you want the commands to block and not do anything while it is executing, you can just use subprocess.call.
#start and block until done
subprocess.call([data["om_points"], ">", diz['d']+"/points.xml"])
如果你想在它执行的时候做一些事情或者把事情输入到 stdin 中,你可以在 popen 调用之后使用 communicate.
If you want to do things while it is executing or feed things into stdin, you can use communicate after the popen call.
#start and process things, then wait
p = subprocess.Popen([data["om_points"], ">", diz['d']+"/points.xml"])
print "Happens while running"
p.communicate() #now wait plus that you can send commands to process
如文档中所述,wait 可能会死锁,因此建议进行交流.
As stated in the documentation, wait can deadlock, so communicate is advisable.
这篇关于Python 弹出命令.等到命令完成的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!


大气响应式网络建站服务公司织梦模板
高端大气html5设计公司网站源码
织梦dede网页模板下载素材销售下载站平台(带会员中心带筛选)
财税代理公司注册代理记账网站织梦模板(带手机端)
成人高考自考在职研究生教育机构网站源码(带手机端)
高端HTML5响应式企业集团通用类网站织梦模板(自适应手机端)