python – 没有shell窗口运行shell命令

栏目: Python · 发布时间: 5年前

内容简介:翻译自:https://stackoverflow.com/questions/2935704/running-shell-commands-without-a-shell-window
使用subprocess.call或subprocess.Popen,执行 shell 命令会使 shell

窗口快速显示并消失.

如何在没有shell窗口的情况下运行shell命令?

我想你的观察仅限于Windows,因为我认为,这是唯一可以获得“控制台闪存”问题的平台.如果是这样,那么 docs

提供以下半帮助段落:

The startupinfo and creationflags, if  given, will be passed to the  underlying CreateProcess() function.  They can specify things such as  appearance of the main window and  priority for the new process. (Windows  only)

遗憾的是,Python在线文档不会重现Windows API文档的相关部分,因此您必须在其他地方找到它们,例如在MSDN上开始 here ,它引导你 here 创建标志,特别是

CREATE_NO_WINDOW
0x
The startupinfo and creationflags, if given, will be passed to the underlying CreateProcess() function. They can specify things such as appearance of the main window and priority for the new process. (Windows only)

000

The process is a console application  that is being run without a console  window. Therefore, the console handle  for the application is not set.

所以,在你的Popen调用中添加creationflags = 0x

The startupinfo and creationflags, if  given, will be passed to the  underlying CreateProcess() function.  They can specify things such as  appearance of the main window and  priority for the new process. (Windows  only)

000会有所帮助(遗憾的是我没有运行Windows的机器来试试这个,所以你必须自己尝试).

翻译自:https://stackoverflow.com/questions/2935704/running-shell-commands-without-a-shell-window


以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

UCD火花集

UCD火花集

UCDChina / 人民邮电出版社 / 2009 / 25.00元

本书收集了UCDChina上线以来推出的13个话题,内容涵盖了产品设计的全部流程,按顺序集结到第一到第十三章中,讨论了如何研究用户、如何将用户需求应用到产品设计中、如何传达和协作。在第十四章,几位设计师分享了生活中的UE故事。第十五章,列举了一些实例和实践者的观点。本书适合有一定工作经验,从事产品设计、产品策划、交互设计、视觉设计、用户研究、前端开发、网站运营,以及所有与互联网有关的从业人员阅读。一起来看看 《UCD火花集》 这本书的介绍吧!

html转js在线工具
html转js在线工具

html转js在线工具

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具

HSV CMYK 转换工具
HSV CMYK 转换工具

HSV CMYK互换工具