将gunzip输出重定向到python脚本

时间:2015-08-31 17:25:49

标签: python gunzip

我想gunzip一系列文件,然后将输出重定向到我的python脚本。 python脚本获取一个参数作为输入。我写了以下命令:

for i in $(ls test5/*/*gz); do gunzip -c $i | python script.py ; done

但它给了我以下错误:

Traceback (most recent call last):
  File "./fqtofa.py", line 7, in <module>
    inFile = sys.argv[1]
IndexError: list index out of range

我想知道为什么它无法从gunzip输出中读取。

1 个答案:

答案 0 :(得分:3)

sys.stdin用于命令行参数。你没有通过任何这些,你通过标准输入管道。所以你需要阅读tar