I\'m trying to compare two different files, let\'s say \"file1\" and \"file2\", in this way. If fields $2 and $3 are the same in both files, print $0 of file2. Here\'s an ex
awk 'NR==FNR{a[$2,$3];next} ($2,$3) in a' file1 file2