将多个 .gz 文件中的特定列粘贴在一起
未压缩的具有相同的行数和相同的列数。
所有文件都位于同一目录中。
是否可以从每个文件中提取每 5-6 列并将它们粘贴在一起,而无需转储临时文件?
一样的东西
for i in *.gz
do
gunzip -c $i |cut -f5-6 >$i.tmp;
done
paste *.tmp
像谢谢
that uncompressed have the same number of lines, and the same number of columns.
All files are located in the same dir.
Is it possible to pullout every 5-6 column from every file and paste them together without having to dump temp files?
Something like
for i in *.gz
do
gunzip -c $i |cut -f5-6 >$i.tmp;
done
paste *.tmp
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以创建一个命令行来评估和使用 bash 进程替换以避免临时文件:
You can create a command line to evaluate and use bash process substitution to avoid tempfiles: