Python 中的异步 Shell 命令执行:探索替代方法
从 Python 脚本异步运行外部命令是一项有价值的技术,允许持续执行脚本当外部命令执行其任务时。本文探讨了实现这种异步行为的适当方法,重点关注 os.system() 和 subprocess.Popen.
os.system() 和 & 符号
的使用在命令末尾使用 os.system() 和与号 (&) 确实可以创建一个异步运行的分离进程。但是,此方法有局限性,不被认为是异步执行的推荐方法。
subprocess.Popen - 高级替代方法
为了可靠的异步命令执行,subprocess.波彭是首选。它提供了对子进程的广泛控制,允许您:
• Create asynchronous processes with Popen() • Perform tasks concurrently while the child process is active • Terminate the process with terminate() • Query its running status with poll() • Communicate with it using stdin and stdout
subprocess.Popen
from subprocess import Popen p = Popen(['watch', 'ls']) # Replace with your command # Other code can run here while the command is executing p.terminate() # Stop the process when necessary
结论
虽然 os.system() 可以提供基本级别的异步执行,但 subprocess.Popen 提供了用于控制子进程并与其交互的更强大和灵活的解决方案。它的多功能性和易用性使其成为 Python 中异步 shell 命令执行的推荐方法。
免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3