6.8.3.2 シェルのパイプラインを置き換える

output=`dmesg | grep hda`
==>
p1 = Popen(["dmesg"], stdout=PIPE)
p2 = Popen(["grep", "hda"], stdin=p1.stdout, stdout=PIPE)
output = p2.communicate()[0]

ご意見やご指摘をお寄せになりたい方は、 このドキュメントについて... をご覧ください。