将 subprocess 与 Pipes 结合使用
利用 subprocess.check_output() 可以成为将命令传输到一起的宝贵工具,从而允许进行复杂的处理。但是,出于安全考虑,强烈建议不要使用 shell=True 参数来促进管道传输。
为了更安全、更稳定的方法,请考虑为每个命令创建单独的进程并在它们之间传输输出。下面是一个示例:
import subprocess # Create a subprocess for the ps command ps = subprocess.Popen(('ps', '-A'), stdout=subprocess.PIPE) # Create a subprocess for the grep command output = subprocess.check_output(('grep', 'process_name'), stdin=ps.stdout) # Wait for the ps process to finish ps.wait() # Process the grep output (if necessary)
或者,您可以通过使用 str.find 在 subprocess.check_output(('ps', '-A')) 的输出中搜索“process_name”来完全避免管道传输:
import subprocess # Run the ps command and capture the output output = subprocess.check_output(('ps', '-A')) # Search for "process_name" in the output if "process_name" in output: # Take appropriate action
通过遵守这些准则,您可以有效地利用具有子进程模块的管道,同时保持安全性和稳定性。
以上是如何通过 Python 的'subprocess”模块安全地使用管道?的详细内容。更多信息请关注PHP中文网其他相关文章!