在我的“test.tar.gz”中有一个文本文件:“test.txt”,其中:
col1 {tab} col2 {tab} col3
-
问题是,当我运行它时:
zcat ./folder1/test.tar.gz | awk -F '\t' '{print $1, $3}'
它返回:
test.txt
所以如果我添加:
zcat ./folder1/test.tar.gz | awk -F '\t' '{print $1, $3}' test.txt
它返回:
awk: cannot open test.txt (No such file or directory)
提前感谢!