Awk-2つのファイル間で値を一致させる
比較しようとしている2つのファイルがあり、それらのファイルの両方から存在するデータを使用してfinal.txtファイルを作成します。
File1-列1およびFile2-列2には、2つのファイル間で一致させる必要のある値が含まれています。
したがって、基本的に、file1からcolumn1を取得しようとしています。file2のcolumn2に一致するものがある場合は、File1Column1、File1Column2、およびFile2Column1をfinal.txtという新しいファイルに書き込みます。
例
ファイル1
1000,Brian
1010,Jason
400,Nick
ファイル2
3044 "1000"
4466 "400"
1206 "1010"
次のような出力ファイル
1000,Brian,3044
1010,Jason,1206
400,Nick,4466
テストコードに結果が表示されない
awk -F"[,]" 'NR==FNR{a[$1]=$1","$2;next} ($2 in a){print a[$2]","$1}' file1.txt file2.txt
私はawkでこれを行うことができるはずだと信じていますが、何らかの理由で私はこれに本当に苦労しています。どんな助けでも大歓迎です。
ありがとう
回答
2 RavinderSingh13
表示されているサンプルをGNUでフォロー、作成、テストしてみてくださいawk
。
awk '
FNR==NR{
gsub(/"/,"",$2) arr[$2]=$1 next } FNR==1{ FS="," OFS="," $0=$0 } ($1 in arr){
print $0,arr[$1]
}
' Input_file2 Input_file1
説明:上記の詳細な説明を追加します。
awk ' ##Starting awk program from here.
FNR==NR{ ##Checking condition FNR==NR which will be TRUE when Input_file1 is being read.
gsub(/"/,"",$2) ##globally substituting " in 2nd field with NULL. arr[$2]=$1 ##Creating array arr with index of 2nd field and value of 1st field. next ##next will skip all further statements from here. } FNR==1{ ##Checking condition if this is first line of Input_file1. FS="," ##Setting FS as comma here. OFS="," ##Setting OFS as comma here. $0=$0 ##Reassigning current line to itself so that field separator values will be implemented to current line. } ($1 in arr){ ##Checking condition if 1st field is present in arr then do following.
print $0,arr[$1] ##Printing current line and value of array arr.
}
' file2 file1 ##Mentioning Input_file names here.
EdMorton
サンプルの入力/出力に2つの入力ファイル間で一致しない行を含めなかったため、これらの場合に必要なことを実行する場合と実行しない場合があります。
$ cat tst.awk BEGIN { FS="[[:space:]\",]+"; OFS="," } NR==FNR { map[$2] = $1 next } { print $0, map[$1] }
$ awk -f tst.awk file2 file1
1000,Brian,3044
1010,Jason,1206
400,Nick,4466