python subprocess.Popen
|
我很难理解如何使用
subprocess.Popen
函数使python调用系统命令。
the_file = (\'logs/consolidated.log.gz\')
webstuff = subprocess.Popen([\'/usr/bin/zgrep\', \'/meatsauce/\', the_file ],stdout=subprocess.PIPE)
for line in webstuff.stdout:
print line
试图让python用我的搜索字符串构建另一个文件。
没有找到相关结果
已邀请:
4 个回复
席酱
注意
和
之间的空格... 要执行我认为您打算的操作,请使用
念炯
并逐行打印结果(
):
在您发布的代码中,字符串插值(
)不起作用,因为模符号前面没有纯字符串-实际上,它应该会失败,并显示以下内容:
队辅坟阮阶
量华
还要检查文档。