我想使用subprocess.check_output() ps -A | grep 'process_name'。 我尝试了各种解决方案,但到目前为止都没用。有人能指导我怎么做吗?
当前回答
你可以尝试sh.py中的管道功能:
import sh
print sh.grep(sh.ps("-ax"), "process_name")
其他回答
要将管道与子进程模块一起使用,必须传递shell=True。
然而,出于各种原因,这确实是不可取的,尤其是安全性。相反,分别创建ps和grep进程,并将输出从一个管道到另一个,如下所示:
ps = subprocess.Popen(('ps', '-A'), stdout=subprocess.PIPE)
output = subprocess.check_output(('grep', 'process_name'), stdin=ps.stdout)
ps.wait()
然而,在您的特定情况下,简单的解决方案是调用子进程。check_output(('ps', '-A')),然后输出str.find。
或者始终可以在子进程对象上使用communication方法。
cmd = "ps -A|grep 'process_name'"
ps = subprocess.Popen(cmd,shell=True,stdout=subprocess.PIPE,stderr=subprocess.STDOUT)
output = ps.communicate()[0]
print(output)
communication方法返回一个由标准输出和标准错误组成的元组。
command = "ps -A | grep 'process_name'"
output = subprocess.check_output(["bash", "-c", command])
你可以尝试sh.py中的管道功能:
import sh
print sh.grep(sh.ps("-ax"), "process_name")
使用来自subprocess.run的输入,您可以将一个命令的输出传递给第二个命令。
import subprocess
ps = subprocess.run(['ps', '-A'], check=True, capture_output=True)
processNames = subprocess.run(['grep', 'process_name'],
input=ps.stdout, capture_output=True)
print(processNames.stdout.decode('utf-8').strip())
推荐文章
- 在Python中哪个更快:x**。5还是math.sqrt(x)?
- 快速unix命令显示文件中间的特定行?
- 有哪些好的Python ORM解决方案?
- 如何在f字符串中转义括号?
- Python void返回类型注释
- 如何为python模块的argparse部分编写测试?
- 在python中是否有用于均方根误差(RMSE)的库函数?
- 如何从matplotlib (pyplot。Figure vs matplotlib。figure) (frameon=False matplotlib中有问题)
- django test app error -在创建测试数据库时出现错误:创建数据库的权限被拒绝
- 识别使用pip安装的python包的依赖关系
- 从字符串变量导入模块
- fork(), vfork(), exec()和clone()的区别
- 如何删除Python中的前导空白?
- python中的assertEquals和assertEqual
- 如何保持Python打印不添加换行符或空格?