我怎样才能使用" pipe"在python call()函数中?

时间:2016-02-14 06:13:54

标签: python python-3.x

我试图在python中使用call方法,如何在(l | grep c++)中管道?

1 个答案:

答案 0 :(得分:3)

基于Python subprocess command with pipe

s = subprocess.Popen(["l"], stdout=subprocess.PIPE)
output = subprocess.check_output(("grep", "c++"), stdin=s.stdout)