1

我有 10 个文件具有相同的制表符分隔的列结构。我需要合并每个文件的第 8 列和第 9 列。我想出了以下 AWK 代码,但它一次只合并两个文件。我正在寻求同时合并所有 10 个文件的帮助,我不确定这是否可行。

我所有的文件名都遵循相同的模式(s1s2.txt、s3s4.txt、s5s6.txt、....s19s20.txt)

#!/bin/bash

awk '
 BEGIN {
        #load array with contents of the first file
        while ( getline < "s1s2.txt" > 0)
         {
           s1s2_counter++
           f1_8[s1s2_counter] = $8
           f1_9[s1s2_counter] = $9
         }
}
   {OFS="\t"}

   { #output the columns 8 and 9 from the first file before the second file
    print f1_8[NR],f1_9[NR], $8, $9
   } ' s3s4.txt
4

1 回答 1

4
awk -F'\t' '{a[FNR] = a[FNR] (NR==FNR?"":FS) $8 FS $9} END{for (i=1;i<=FNR;i++) print a[i]}' s1s2.txt .... s19s20.txt

使用 getline 通常是错误的方法,请参阅http://awk.info/?tip/getline

于 2013-09-23T19:32:23.023 回答