Awk 打印来自多个输入的匹配列并连接输出

Awk 打印来自多个输入的匹配列并连接输出,awk,Awk,打印来自多个输入的匹配列并连接输出 A.lst B.lst 通过使用上一个命令,我不记得从哪里,一旦我找到它,我将归功于他们 NR==FNR{ a[$1,$2]=$1; next } { s=SUBSEP k=$3 s $4 }k in a{ print $0 } 但我不知道如何组合输出 它应该只打印与B.lst中的某些列$3$4匹配的内容 1091 1991 43.5 -30.1 -11.4 295 1 1091 1993 -11.2 -2

打印来自多个输入的匹配列并连接输出

A.lst

B.lst

通过使用上一个命令,我不记得从哪里,一旦我找到它,我将归功于他们

NR==FNR{ 
    a[$1,$2]=$1; next 
}
{ 
    s=SUBSEP
    k=$3 s $4
}k in a{ print $0 }
但我不知道如何组合输出 它应该只打印与B.lst中的某些列$3$4匹配的内容

1091 1991    43.5   -30.1   -11.4 295 1
1091 1993   -11.2   -28.5    -2.7 293 3
1091 1997    35.8   -13.2    -4.5 296 7
1091 2003   -26.8   -23.9     0.6 287 13
1091 2007    23.8    64.8     3.5 283 17
1091 2008   -45.8    70.7    -6.0 282 18
1100 1967    24.5   -25.6   -12.7 1419 3
1100 1971  -935.0     9.3    52.0 56 7
1100 1972  -388.8    59.1    20.4 55 8
1100 1974    17.7    48.9     3.0 1445 10


你能试试下面的吗

awk 'FNR==NR{array[$1,$2]=$3 OFS $4;next} (($1,$2) in array){print $0,array[$1,$2]}'  file_B file_A
现在添加上述解决方案的非线性形式

awk '
FNR==NR{
  array[$1,$2]=$3 OFS $4
  next
}
(($1,$2) in array){
  print $0,array[$1,$2]
}
'  file_B file_A
说明:为上述代码添加说明

awk '                        ##Starting awk program here.
FNR==NR{                     ##Checking condition FNR==NR which will be TRUE when file_B is being read.
  array[$1,$2]=$3 OFS $4     ##Creating an array named array whose index is $1,$2 and value is $3 OFS $4.
  next                       ##Using next will skip all further statements from here.
}                            ##Closing FNR==NR condition BLOCK here.
(($1,$2) in array){          ##Checking condition if $1,$2 is present in array then do following.
  print $0,array[$1,$2]      ##Printing current line and then value of array with index of $1,$2
}
'  file_B file_A             ##Mentioning Input_file names here.

你能试试下面的吗

awk 'FNR==NR{array[$1,$2]=$3 OFS $4;next} (($1,$2) in array){print $0,array[$1,$2]}'  file_B file_A
现在添加上述解决方案的非线性形式

awk '
FNR==NR{
  array[$1,$2]=$3 OFS $4
  next
}
(($1,$2) in array){
  print $0,array[$1,$2]
}
'  file_B file_A
说明:为上述代码添加说明

awk '                        ##Starting awk program here.
FNR==NR{                     ##Checking condition FNR==NR which will be TRUE when file_B is being read.
  array[$1,$2]=$3 OFS $4     ##Creating an array named array whose index is $1,$2 and value is $3 OFS $4.
  next                       ##Using next will skip all further statements from here.
}                            ##Closing FNR==NR condition BLOCK here.
(($1,$2) in array){          ##Checking condition if $1,$2 is present in array then do following.
  print $0,array[$1,$2]      ##Printing current line and then value of array with index of $1,$2
}
'  file_B file_A             ##Mentioning Input_file names here.