0
我想要gunzip
一系列文件,然後將輸出重定向到我的python腳本。 python腳本獲取一個參數作爲輸入。我寫了下面的命令:將gunzip輸出重定向到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
輸出讀取。
您正在閱讀stdin的輸入,結帳http://stackoverflow.com/questions/1450393/how-do-you-read-from-stdin-in-python – zyxue